body {
    background-color: #f5f5f5;
    font-family: 'Arial', sans-serif;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.card {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 30px;
    width: 500px;
    text-align: center;
}

.form-group {
    margin-bottom: 20px;
    text-align: center;
}

.form-label {
    font-weight: bold;
    display: block;
    margin-bottom: 8px;
    color: #333;
}

.form-control {
    width: 95%;
    /* Adjust this percentage */
    margin: 0 auto;
    /* Center the input field */
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #ccc;
    transition: border-color 0.3s ease;
    font-size: 16px;
}

.form-group select {
    width: 100%;
    height: 50px;
    border-radius: 8px;
    border: 1px solid #ccc;
    transition: border-color 0.3s ease;
    text-align: left;
    font-size: 18px;
}


.form-control:focus {
    outline: none;
    border-color: #007bff;
}

.btn-primary {
    background-color: #8E44AD;
    color: #fff;
    padding: 15px 20px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-size: 18px;
    width: 400px;
}

.btn-primary:hover {
    background-color: #6C3483;
}

.register-form {
    width: 400px;
}

/* 
.message-container {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    padding: 10px;
    background-color: rgba(255, 255, 255, 0.9);
    z-index: 9999;
    text-align: center;
    width: 100%;
} */

.message {
    position: relative;
    margin-bottom: 10px;
    padding: 10px;
    background-color: #ffc107;
    color: #333;
    font-weight: bold;
    border-radius: 5px;
    display: inline-block;
}

.message-close {
    position: absolute;
    top: 5px;
    right: 5px;
    font-size: 14px;
    font-weight: bold;
    color: #333;
    cursor: pointer;
}

label{
    margin-top: 15px;
}