@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: url("../img/1.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    overflow: hidden;
    height: 100vh;
}

.wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: rgba(39, 39, 39, 0.4);
}

.nav {
    position: fixed;
    top: 0;
    display: flex;
    justify-content: space-around;
    width: 100%;
    height: 100px;
    line-height: 100px;
    background: linear-gradient(rgba(39,39,39, 0.6), transparent);
    z-index: 100;
}

.nav-logo p {
    color: white;
    font-size: 25px;
    font-weight: 600;
}

.nav-menu ul {
    display: flex;
}

.nav-menu ul li {
    list-style-type: none;
}

.nav-menu ul li .link {
    text-decoration: none;
    font-weight: 500;
    color: #fff;
    padding-bottom: 15px;
    margin: 0 25px;
}

.link:hover, .active {
    border-bottom: 2px solid #fff;
}

.nav-button .btn {
    width: 130px;
    height: 40px;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.4);
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: .3s ease;
}

.btn:hover {
    background: rgba(255, 255, 255, 0.3);
}

#registerBtn {
    margin-left: 15px;
}

.btn.white-btn {
    background: rgba(255, 255, 255, 0.9);
}

.btn.white-btn:hover {
    background: rgba(255, 255, 255, 0.7);
}

.nav-menu-btn {
    display: none;
}

.form-box {
    width: 500px;
    height: 620px;
    background: rgba(0, 0, 0, 0.8);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    color: white;
}

.register-container .top {
    text-align: center;
    margin-bottom: 20px;
}

.register-container .top span a {
    color: #4d97ff;
    text-decoration: none;
}

.register-container .top header {
    font-size: 25px;
    font-weight: 600;
    margin-top: 10px;
}

.input-box {
    position: relative;
    margin-bottom: 20px;
}

.input-box .input-field {
    width: 100%;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    color: white;
}

.input-box i {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 20px;
    color: white;
}

.input-box .submit {
    width: 100%;
    padding: 10px;
    background: #4d97ff;
    border: none;
    border-radius: 20px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: .3s ease;
}

.input-box .submit:hover {
    background: #346bb7;
}

.two-col {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
}

.two-col .one input[type="checkbox"] {
    accent-color: #4d97ff;
    cursor: pointer;
}

.two-col .two a {
    color: #4d97ff;
    text-decoration: none;
}
