.header {
    background-color: #f1f0f0;
    color: #bbbbbb;
    border: 1px solid #eee0e0;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    height: 80px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.clinic-name {
    width: 20%;
    color: #4C0064;
}
.error-message {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    height: 90px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.success-message {
    background-color: #e3f8d7;
    color: #3b5d1e;
    border: 1px solid #9ce89d;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    height: 120px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}
.forget-password {
    color: grey;
    text-decoration: blink;
}
.auth-container {
    max-width: 400px;
    margin: 50px auto;
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.auth-title {
    color: #4C0064;
    font-weight: bold;
    margin-bottom: 20px;
    text-align: center;
}
.form-control:focus {
    border-color: #4C0064;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}
#confirmationMessage {
    color: #28a745;
    margin-top: 10px;
}
.btn-custom {
    background-color: #4C0064;
    color: white;
    width: 100%;
    margin-top: 15px;
}
