.register-container {
    max-width: 400px;
    margin: 50px auto;
    padding: 30px;
    background-color: #f8f9fa;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.register-container h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #007bff;
}

.register-container input {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.register-container button {
    width: 100%;
    padding: 10px;
    background-color: #007bff;
    border: none;
    color: white;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
}

.register-container .error-msg {
    color: red;
    background-color: #ffe6e6;
    padding: 10px;
    border-radius: 5px;
}

.register-container .success-msg {
    color: green;
    background-color: #e6ffe6;
    padding: 10px;
    border-radius: 5px;
}
.register-container .register-select {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: white;
    color: #615e5e;
    font-size: 16px;
    appearance: none;
}
