.body {
    background-color: #dadada;
}

/* .container {
    max-width: 1200px;
} */

.password-strength-container {
    display: none;
    /* Initially hide the entire container */
}

.password-strength {
    height: 4px;
    width: 100%;
    background-color: #ff4444;
    margin-top: 5px;
    border-radius: 2px;
    overflow: hidden;
    display: flex;
}

.progress {
    height: 100%;
    width: 0;
    background-color: #28a745;
    transition: width 0.3s ease;
}

.password-strength.text-muted {
    background-color: #ff4444;
}

.register-container, .register-admin-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #dadada;
    padding-top: 80px;
    padding-bottom: 20px;
}

.register-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    width: 100%;
    max-width: 400px;
}

.register-card h2 {
    text-align: center;
    margin-bottom: 1.5rem;
    color: #333;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-control {
    border: 2px solid #ddd;
    padding: 0.75rem;
    border-radius: 8px;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    border-color: #007bff;
    outline: none;
    box-shadow: 0 0 0 2px rgba(0,123,255,0.25);
}

.btn-register {
    width: 100%;
    padding: 0.75rem;
    font-weight: 600;
    /* background-color: #007bff; */
    /* border: none; */
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-register:hover {
    background-color: rgb(140, 73, 208);
}

.terms-conditions {
    font-size: 0.875rem;
    color: #666;
    margin-top: 1rem;
    text-align: center;
}

.terms-conditions a {
    color: #007bff;
    text-decoration: none;
}

/* .terms-conditions a:hover {
    text-decoration: underline;
} */

.button {
    background-color: rebeccapurple;
    color: white;
    border: none;
}

.btn-register:hover {
    background-color: rgb(140, 73, 208);
}