/* 
   Login Page Styles
*/

body {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-card {
    background-color: #fff;
    border: none;
    border-radius: 10px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.logo-placeholder {
    color: #2c3136;
    margin: 0 auto;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-btn {
    background-color: #2c3136;
    border-color: #2c3136;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    padding: 12px;
}

.login-btn:hover, .login-btn:focus {
    background-color: #1a1e21;
    border-color: #1a1e21;
}

.form-label {
    font-weight: 500;
    color: #2c3136;
}

.input-group-text {
    background-color: #f8f9fa;
    color: #2c3136;
    border-right: none;
}

.form-control {
    border-left: none;
}

.form-control:focus {
    box-shadow: none;
    border-color: #ced4da;
}

.input-group:focus-within .input-group-text,
.input-group:focus-within .form-control {
    border-color: #2c3136;
}

.is-invalid.form-control {
    border-left: none;
}

@media (max-width: 576px) {
    .col-md-5 {
        width: 90%;
    }
}

/* Footer text styling */
.text-white {
    opacity: 0.8;
} 