/* PAGE */

.auth-page {
    background: #ffffff;
    font-family: Inter, sans-serif;
}

/* CARD */

.auth-card {
    background: #ffffff;
    padding: 3rem;
    border-radius: 20px;
    box-shadow:
        0 1px 2px rgba(0,0,0,.04),
        0 8px 24px rgba(0,0,0,.06);
}

/* ICON */

.auth-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    border-radius: 50%;
    background: rgba(0,128,96,.08);

    display: flex;
    align-items: center;
    justify-content: center;
}

.auth-icon-wrapper i {
    font-size: 40px;
    color: #111827;
}

/* TITLE */

.auth-title {
    font-size: 2rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: .5rem;
    letter-spacing: -0.03em;
}

.auth-subtitle {
    color: #6b7280;
    margin-bottom: 0;
    line-height: 1.6;
}

/* INPUT */

.auth-input {
    height: 60px;
    border-radius: 14px;
    border: 1px solid #d1d5db;

    font-size: 1.35rem;
    font-weight: 600;

    letter-spacing: 6px;
    transition: all .2s ease;
}

.auth-input:focus {
    border-color: #008060;
    box-shadow: 0 0 0 .2rem rgba(0,128,96,.12);
}

/* BUTTON */

.auth-btn {
    height: 58px;
    border-radius: 14px;

    background: #111827;
    color: #fff;

    font-weight: 600;
    font-size: 1rem;

    transition: all .2s ease;
}

.auth-btn:hover {
    background: #000;
    color: #fff;
    transform: translateY(-1px);
}

/* LINK */

.auth-link {
    color: #ff0000;
    text-decoration: none;
    font-weight: 500;
}

.auth-link:hover {
    text-decoration: underline;
    color: #ff0000;
}

/* MOBILE */

@media (max-width: 576px) {

    .auth-card {
        padding: 2rem;
    }

    .auth-title {
        font-size: 1.7rem;
    }

    .auth-icon-wrapper {
        width: 70px;
        height: 70px;
    }

    .auth-icon-wrapper i {
        font-size: 34px;
    }

}