

.register-container {
    background-color: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 450px;
    text-align: center;
}

.register-container h2 {
    color: #1e2a44;
    margin-bottom: 20px;
    font-size: 28px;
}

.form-group, form p {
    margin-bottom: 8px;
    text-align: left;
}

.form-group label, form p label{
    display: block;
    font-weight: bold;
    margin-bottom: 3px;
    color: #25314b;
}

.form-group input, form p input {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.form-group input:focus {
    border-color: #1e2a44;
    outline: none;
}

.register-btn {
    width: 100%;
    padding: 12px;
    background-color:rgb(15, 136, 82);
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

.register-btn:hover {
    background-color: #2a3b5e;
    transform: translateY(-2px);
}

.divider {
    margin: 20px 0;
    position: relative;
    text-align: center;
    color: #666;
}

.divider::before,
.divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30%;
    height: 1px;
    background-color: #ddd;
}

.divider::before {
    left: 0;
}

.divider::after {
    right: 0;
}

.social-register {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.social-btn {
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s, transform 0.2s;
    text-decoration: none;
}

.social-btn:hover {
    transform: translateY(-2px);
}

.google-btn {
    background-color: #fff; 
    background-color: #D5452F ;
    color: #fff;
}

.google-btn:hover {
    background-color:rgb(149, 44, 28) ;
}

.facebook-btn {
    background-color: #4267b2;
    color: #fff;
}

.facebook-btn:hover {
    background-color: #365899;
}

.social-btn i {
    margin-right: 10px;
    font-size: 20px;
}

.footer-text {
    margin-top: 20px;
    color: #666;
}

.footer-text a {
    color: #1e2a44;
    text-decoration: none;
}

.footer-text a:hover {
    text-decoration: underline;
}

/* Mobile Responsiveness */
@media (max-width: 480px) {
    .register-container {
        padding: 20px;
        margin: 20px;
    }

    .register-container h2 {
        font-size: 24px;
    }
}
small.form-text{
    display: block;
    padding-left: 20px;
    padding-top: 10px;
}
.text-muted {
    color: #6c757d;
    opacity: 0.75;
    }



.error ul{
    list-style-type: none;
    color: rgb(185, 28, 28);
    font-size: 14px;
}


/* Success Button (Green) */
button{
    background-color: #28a745;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
    width: 100%;
    margin: 10px 0;
}

.success-btn {
    background-color: #28a745;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.success-btn:hover {
    background-color: #218838;
}

/* Alert Button (Yellow/Orange) */
.alert-btn {
    background-color: #ffc107;
    color: #212529;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.alert-btn:hover {
    background-color: #e0a800;
}

/* Danger Button (Red) */
.danger-btn {
    background-color: #dc3545;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.danger-btn:hover {
    background-color: #c82333;
}

form ul {
    color: #6c757d; /* A muted gray color (Bootstrap-style muted tone) */
    font-size: 0.9em; /* Slightly smaller text for subtlety */
    opacity: 0.8; /* Slightly transparent to enhance the muted effect */
    margin-top: 5px; /* Space between input and helptext */
    display: block; /* Ensures it takes its own line */
    text-align: left;
    padding-left: 20px;
}

.errorlist{
    list-style-type: none;
    color: rgb(185, 28, 28);
    font-size: 14px;
    padding-left: 0px;
    font-weight: 700;
}
