
/* Nút chọn đăng ký và đăng nhập */
.switch-buttons {
    display: flex;
    justify-content: space-around;
    margin-bottom: 20px;
}

.switch-buttons button {
    padding: 10px 20px;
    border: none;
    background-color: #ddd;
    color: #333;
    cursor: pointer;
    font-size: 16px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.switch-buttons button:hover {
    background-color: #bbb;
}

.switch-buttons button.active {
    background-color: #333;
    color: #fff;
}

/* Phần nội dung hiển thị */
.content {
    display: none;
}

.content.active {
    display: block;
}

/* Kiểu dáng cho form */
form {
    display: flex;
    flex-direction: column;
}

form input, form select {
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    width: 100%;
    box-sizing: border-box;
}

form button {
    padding: 10px;
    border: none;
    background-color: #28a745;
    color: white;
    font-size: 18px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

form button:hover {
    background-color: #218838;
}

/* Kiểu dáng cho nhãn */
form label {
    font-weight: bold;
    margin-bottom: 5px;
}

/* CSS cho phần quên mật khẩu */
.forgot-password {
    text-align: right;
    margin-bottom: 20px;
}

.forgot-password a {
    color: #007bff;
    text-decoration: none;
}

.forgot-password a:hover {
    text-decoration: underline;
}

/* CSS cho thông báo lỗi */
.error {
    color: red;
    font-size: 14px;
    margin-bottom: 15px;
}