body {
    background: #f8fafc;
}
.auth-wrapper {
    width: 100%;
    padding: 24px;
    display: flex;
    justify-content: center;
}

.auth-card {

    width: 420px;

    background: #fff;

    border: 1px solid #E5E7EB;

    border-radius: 12px;

    padding: 40px;

    box-shadow:
        0 4px 15px rgba(0, 0, 0, .05);
}

.logo {

    display: flex;

    justify-content: center;

    align-items: center;

    gap: 8px;

    font-weight: 700;

    color: #2563EB;

    margin-bottom: 30px;
}

h1 {

    font-size: 34px;

    font-weight: 700;

    text-align: center;

    margin-bottom: 8px;
}

.subtitle {

    text-align: center;

    color: #6B7280;

    margin-bottom: 30px;
}

.input-group {

    position: relative;

    margin-bottom: 16px;
}

.input-group input {

    width: 100%;

    height: 50px;

    padding: 0 16px;

    border: 1px solid #D1D5DB;

    border-radius: 10px;

    outline: none;

    transition: .2s;
}

.input-group input:focus {

    border-color: #2563EB;
}

.input-group button {

    position: absolute;

    right: 15px;

    top: 50%;

    transform: translateY(-50%);

    background: none;

    border: none;

    cursor: pointer;

    color: #6B7280;
}

.primary-btn {

    width: 100%;

    height: 52px;

    margin-top: 10px;

    border: none;

    border-radius: 10px;

    background: #2563EB;

    color: #fff;

    font-weight: 600;

    cursor: pointer;

    transition: .3s;
}

.primary-btn:hover {

    background: #1D4ED8;
}

.footer-link {

    margin-top: 28px;

    text-align: center;

    color: #6B7280;
}

.footer-link a {

    text-decoration: none;

    color: #2563EB;

    font-weight: 500;
}

.error {

    color: #DC2626;

    font-size: 13px;

    margin-top: 8px;
}

@media(max-width:480px) {

    .auth-card {

        width: 100%;

        padding: 28px 20px;
    }

    h1 {

        font-size: 28px;
    }

}