/* Đặt lại CSS mặc định */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

/* BODY */
body {
    background-color: #f5f5f5;
    color: #333;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* NAVBAR */
.navbar {
    background-color: #111;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    position: fixed; /* Giữ thanh navbar cố định */
    top: 0;
    left: 0;
    width: 100%; /* Đảm bảo navbar phủ toàn bộ chiều rộng */
    z-index: 1000; /* Đảm bảo luôn nằm trên các phần khác */
}

.navbar h1 {
    color: #fff;
    font-size: 24px;
}

.navbar ul {
    display: flex;
    list-style: none;
}

.navbar ul li {
    margin-left: 15px;
}

.navbar ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

.navbar ul li a:hover {
    color: #f0a500;
}

/* MAIN */
main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 80px; /* Đẩy nội dung xuống dưới thanh navbar */
}

/* FORM CONTAINER */
.form-container {
    background-color: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
}

/* Tiêu đề của form */
.form-container h1 {
    text-align: center;
    margin-bottom: 20px;
    color: #333;
}

/* Nhãn và Input của form */
form label {
    display: block;
    margin-bottom: 8px;
    color: #555;
    font-weight: bold;
}

form input[type="text"],
form input[type="password"],
form input[type="email"],
form input[type="tel"],
form input[type="date"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

/* Radio button */
.gender-group {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.gender-label {
    margin-right: 10px;
    font-size: 14px;
    color: #555;
}

/* Nút submit */
form input[type="submit"] {
    width: 100%;
    padding: 12px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

form input[type="submit"]:hover {
    background-color: #45a049;
}

/* Responsive cho thiết bị di động */
@media (max-width: 500px) {
    .form-container {
        padding: 20px;
    }

    .navbar h1 {
        font-size: 20px;
    }

    .navbar ul li {
        margin-left: 10px;
    }
}
