
/* Căn giữa toàn bộ trang */
body {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-image: url('../../img/OIP.jpg'); /* Thay ảnh nền */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.swal2-container {
    width: auto;
    height: auto;
    margin: 0 !important;
    padding: 0 !important;
    position: fixed !important;
  }

/* Form container */
.form-container {
    width: 30%;
    padding: 20px;
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 1); /* Làm mờ form */
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

/* Logo */
.form-container img {
    height: auto;
    margin-bottom: 10px; /* Tạo khoảng cách dưới logo */
}

/* Link chuyển đổi đăng nhập / đăng ký */
.toggle-link {
    cursor: pointer;
    color: #007bff;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .form-container {
        width: 50%;
    }
}
