﻿body {
    background: #f4f6f9;
}

.auth-card {
    background: #fff;
    padding: 35px 30px;
    border-radius: 18px;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 10px 35px rgba(0,0,0,.15);
    text-align: center;
    animation: fadeInUp .6s ease;
}

    .auth-card .logo img {
        width: 80px;
        margin-bottom: 15px;
    }

    .auth-card h2 {
        font-weight: 800;
        margin-bottom: 5px;
        color: #2f3b42;
    }

    .auth-card p {
        font-size: .9rem;
        margin-bottom: 25px;
        color: #6c757d;
    }

    .auth-card .form-control {
        border-radius: 10px;
        padding: 10px 14px;
        text-align: right;
    }

    .auth-card .btn {
        border-radius: 10px;
        padding: 10px;
        font-weight: 700;
    }

.link-text {
    font-size: .85rem;
    color: #6c757d;
}

    .link-text a {
        color: var(--primary);
        text-decoration: none;
        font-weight: 700;
    }

.position-relative i {
    left: 12px;
    right: auto;
    cursor: pointer;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

