﻿body {
    background: url('/img/backgroundLogin.jpg') no-repeat center center/cover;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Poppins', sans-serif;
}

.login-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
    color: #000000;
    width: 100%;
    max-width: 380px;
    text-align: center;
}

    .login-card h2 {
        font-weight: 600;
        margin-bottom: 10px;
    }

    .login-card p {
        color: #000000;
        margin-bottom: 25px;
    }

.form-control {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: #fff;
}

    .form-control::placeholder {
        color: #ddd;
    }

.btn-login {
    background: linear-gradient(90deg, #4caf50, #2ecc71);
    color: white;
    border: none;
    width: 100%;
    padding: 10px;
    border-radius: 10px;
    font-weight: 500;
}

    .btn-login:hover {
        opacity: 0.9;
    }

.remember {
    display: flex;
    align-items: center;
    justify-content: start;
    color: #000000;
    margin-bottom: 20px;
}

.reset-text {
    margin-top: 15px;
}

    .reset-text a {
        color: #000000;
        font-weight: 600;
        text-decoration: none;
    }

        .reset-text a:hover {
            text-decoration: underline;
        }

/* Responsive cho màn hình lớn (Laptop) */
@media (min-width: 992px) {
    .login-card {
        max-width: 450px;
        padding: 50px 40px;
    }

        .login-card h2 {
            font-size: 2rem;
        }
}
/* ⭐ THÊM CSS ĐÚNG CHO PHẦN LIÊN HỆ */
.intro-social {
    text-align: center;
    margin-top: 25px; /* Tạo khoảng cách với nút Login */
    color: #000000; /* Đảm bảo màu chữ là màu đen */
}

    .intro-social span {
        font-size: 14px;
        margin-bottom: 15px; /* Khoảng cách từ chữ xuống icon */
        display: block; /* Cho chữ nằm 1 hàng riêng */
    }

    .intro-social ul {
        list-style: none; /* Xóa dấu chấm đầu dòng */
        padding: 0;
        margin: 0;
        display: flex; /* Xếp các icon trên 1 hàng */
        justify-content: center; /* Căn giữa hàng icon */
        gap: 20px; /* ⭐ Đây là code để "tách nhau ra" */
    }

        .intro-social ul li a {
            color: #000000; /* Màu icon */
            font-size: 20px; /* Kích thước icon */
            text-decoration: none;
            transition: transform 0.2s ease;
        }

            .intro-social ul li a:hover {
                transform: scale(1.2); /* Hiệu ứng zoom khi di chuột */
                color: #4caf50; /* Đổi màu khi hover (tùy chọn) */
            }