* {
    margin: 0;
    box-sizing: border-box;
}

body {
    font-family: Inter, sans-serif;
    font-size: 16px;
    background-color: #f5f5f5;
    height: 100vh;
    overflow-x: hidden;
}

.d-none {
    display: none;
}

.join-logo {
    width: 100px;
    height: 121px;
    margin: 80px 0 0 70px;
}

.animated-logo_mobile {
    display: none;
}

.animated-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: logoMove 0.9s forwards;
    z-index: 10;
}

@keyframes logoMove {
    0% {
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) scale(3);
    }

    33% {
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) scale(3);
    }

    100% {
        top: 0px;
        left: 0px;
        transform: translate(0, 0) scale(1);
    }
}

.login-overlay {
    width: 100%;
    height: 100%;
    animation: fadeOut 0.9s forwards;
}

@keyframes fadeOut {
    0% {
        opacity: 0;
    }

    35% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.not_a_user {
    display: flex;
    gap: 35px;
    padding: 67px 122px 0 0;
    justify-content: flex-end;
    align-items: center;
    color: #2A3647;
}

.not_join_user {
    font-size: 20px;
    padding-right: 35px;
}

.signup-btn {
    background-color: #2A3647;
    padding: 15px 20px;
    border-radius: 12px;
    text-decoration: none;
    color: white;
    font-weight: 700;
    cursor: pointer;
}

h1 {
    font-size: 61px;
    font-weight: 700;
    padding-bottom: 16px;
}

.login-container {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.login-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: white;
    border-radius: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    width: 652px;
    height: 475px;
}

.underline_blue {
    border: 1.5px solid #29ABE2;
    width: 150px;
    border-radius: 2px;
    margin-bottom: 24px;
}

.input-group {
    position: relative;
    max-width: 422px;
    width: 100%;
    margin-bottom: 24px;
}

::placeholder {
    color: #d1d1d1;
}

.input-group img {
    width: 20px;
    height: 20px;
}

.input-group input:focus {
    outline: none !important;
    border: 1px solid #29ABE2;
}

.input-group input {
    width: 100%;
    padding: 12px 50px 12px 15px;
    font-size: 20px;
    border: 1px solid #ccc;
    border-radius: 8px;
    outline: none !important;
}

.icon {
    position: absolute;
    right: 10px;
    transform: translateY(60%);
    pointer-events: none;
}

.visibility-icon {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    cursor: pointer;
}

.buttons {
    display: flex;
    gap: 35px;
    margin: 35px 0 20px 0;
}

.login-btn {
    background-color: #2A3647;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 21px;
    font-weight: 700;
    cursor: pointer;
}

.login-btn:hover,
.signup-btn:hover {
    background-color: #29ABE2;
    box-shadow: 0px 4px 4px 0px #00000040;
    transition: box-shadow 0.2s;
    transition: background-color 0.2s;
    cursor: pointer;
}

.guest-login-btn {
    background-color: transparent;
    border: 1px solid #2A3647;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 21px;
    font-weight: 700;
    cursor: pointer;
    color: #2A3647;
}

.guest-login-btn:hover {
    color: #29ABE2;
    border: 1.2px solid #29ABE2;
    box-shadow: 0px 4px 4px 0px #00000040;
    transition: box-shadow 0.2s;
    transition: background-color 0.2s;
}

footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    position: absolute;
    bottom: 40px;
    gap: 42px;
}

a {
    cursor: pointer;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

footer a {
    color: #a8a8a8;
    padding-right: 20px;
}

footer a:hover {
    color: #29ABE2;
    text-decoration: none;
    font-weight: 500;
}

.sign-up-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: white;
    border-radius: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    width: 598px;
    height: 630px;
}

.signup-btn-arrow {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.arrow-blue {
    position: absolute;
    display: flex;
    justify-content: flex-start;
    width: 100%;
    padding-left: 40px;
}

.step_back_arrow {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 32px;
    height: 32px;
    cursor: pointer;
}

.step_back_arrow:hover {
    background-color: #ebebeb;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    cursor: pointer;
}

.checkbox-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.checkbox-group {
    padding-bottom: 24px;
}

.signup-btn-container {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: right;
    padding: 67px 121px 0 0;
    gap: 35px;
}

.signup-btn-footer {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    position: absolute;
    bottom: 30px;
    display: none;
}

.pop-up-bg {
    width: 100vw;
    height: 100vh;
    margin: 0 auto;
    background-color: rgba(0, 0, 0, 0.1);
    position: relative;
}

.moving-sign {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 300px;
    width: 100%;
    height: 74px;
    border-radius: 20px;
    background-color: #2A3647;
    color: #FFFFFF;
    font-size: 20px;
}