@import url("../login/index.css");

.auth-form {
    margin-top: 60px;
}
.auth-form .return-login {
    width: max-content;
    display: flex;
    align-items: center;

    font-size: 14px;
    line-height: 20px;
    font-weight: bold;
    color: var(--primary);
    text-decoration: none;
}

.auth-form .return-login img {
    transform: rotate(-90deg);
}

.auth-form .return-login:hover {
    text-decoration: underline;
}

.auth-form .computer-img {
    width: 110px;
    aspect-ratio: 1;
    margin: 0 auto;
}

.auth-form .description {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 14px;
    line-height: 20px;
}
.notification {
    margin-top: 160px;
    display: none;
    gap: 8px;
    flex-direction: column;
    align-items: center;
}
.notification img {
    width: 160px;
    aspect-ratio: 1;
}
.notification p {
    font-size: 16px;
    line-height: 24px;
}
@media only screen and (max-width: 1024px) {
    .auth-form {
        margin-top: 30px;
    }
    .notification {
        margin-top: 160px;
    }
}

@media only screen and (max-width: 430px) {
    .auth-form .computer-img {
        width: 50%;
    }
    .notification {
        margin-top: 160px;
    }
    .notification img {
        width: 50%;
    }
}
