/* Login Page Styles - Extracted from Index.cshtml */

body {
    background-color: #f8f9fa;
}

.login-form {
    display: flex;
    justify-content: center;
    flex-direction: column;
    height: 100%;
    background: #fff;
    padding: 20px;
    border-radius: 30px;
    box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.1);
    margin-top: 100px;
    opacity: 95%;
}

.login-form h2 {
    margin-bottom: 20px;
}

.login-form .btn {
    margin-top: 10px;
}

.login-form .form-check {
    margin-bottom: 20px;
}

.login-form .text-center a {
    color: #000000;
    text-decoration: none;
}

.login-form .text-center a:hover {
    text-decoration: underline;
}

.btn-social {
    margin: 5px;
    width: 48%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn-social i {
    margin-right: 10px;
}

.text-end {
    text-align: right !important;
}

.divider {
    width: 100%;
    text-align: center;
    border-bottom: 1px solid #D8DADC;
    line-height: 0.1em;
    margin: 10px 0 20px;
}

.divider span {
    background: #fff;
    padding: 0 10px;
}

.field-validation-error {
    color: #dc3545;
    font-size: 0.875rem;
}

/* Alert styles */
.alert {
    padding: 0.75rem 1.25rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: 0.25rem;
}

.alert-warning {
    color: #856404;
    background-color: #fff3cd;
    border-color: #ffeaa7;
}

.alert-info {
    color: #0c5460;
    background-color: #d1ecf1;
    border-color: #bee5eb;
}

.alert-dismissible .close {
    position: relative;
    top: -0.75rem;
    right: -1.25rem;
    padding: 0.75rem 1.25rem;
    color: inherit;
}

.fade {
    transition: opacity 0.15s linear;
}

.show {
    opacity: 1;
} 