/* Căn chỉnh chung */
body {
    background-image: url('../img/TuyenSinh/anhtruong.jpg'); /* Ảnh nền */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}
.lammo{
    border-radius: 30px;
    z-index: 400;
    position: absolute;
    height:1026px;
    width: 700px;
    background-color: white;
    opacity: 0.4;
}
/* Form đăng ký */
.container {
    /* background-image: linear-gradient(white); */
    z-index: 800;
    width: 500px;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

/* Tiêu đề */
h1 {
    color: rgb(12, 12, 12);
    text-align: center;
    font-size: 35px;
    margin-bottom: 15px;
}

p {
    color: rgb(7, 7, 7);
    text-align: center;
    font-size: 18px;
    margin-bottom: 20px;
}

/* Căn chỉnh bảng */
table {
    width: 100%;
    border-collapse: collapse;
}

/* Căn chỉnh các ô trong bảng */
td {
    padding: 12px;
}

/* Định dạng nhãn (label) */
td label {
    font-size: 18px;
    font-weight: bold;
    display: block;
    text-align: right;
}

/* Định dạng input, select */
input, select {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    border: 2px solid #ccc;
    border-radius: 6px;
    box-sizing: border-box;
}

/* Hiển thị Giới tính theo hàng ngang */
.gender-group {
    display: flex;
    align-items: center;
    gap: 20px; /* Tạo khoảng cách giữa các radio button */
}

/* Chỉ chỉnh radio button không chiếm hết chiều rộng */
.gender-group input {
    width: auto;
    margin-right: 5px;
}

/* Căn chỉnh nút đăng ký */
button {
    margin-top: 20px;
    width: 100%;
    padding: 12px;
    background-color: #000103;
    border: none;
    color: rgb(255, 255, 255);
    font-size: 18px;
    border-radius: 30px;
    cursor: pointer;
    transition: 0.3s;
}

/* Hiệu ứng hover cho nút */
button:hover {
    background-color: #0056b3;
}

/* Căn giữa nút đăng ký */
td[colspan="2"] {
    text-align: center;
}
table tr td{
    color: rgb(0, 0, 0);
}
