﻿
body {
    background-color: #e5e5e5 !important;
}

.login-page {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    /* Gray out page */
    background-color: #e5e5e5;
}

.login-container {
    width: 100%;
    max-width: 500px;
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.25);
}

    /* Heading */
    .login-container h2 {
        text-align: center;
        margin-bottom: 25px;
    }

    /* Form controls */
    .login-container .form-control {
        width: 100%;
        box-sizing: border-box;
    }

    /* Submit button */
    .login-container .btn-primary {
        width: 100%;
        padding: 10px;
    }

    /* Registration links */
    .login-container .sf-registration-link {
        text-align: center;
        margin-top: 10px;
    }

        .login-container .sf-registration-link a {
            text-decoration: none;
        }

    /* Validation messages */
    .login-container .text-danger {
        font-size: 14px;
        margin-top: 5px;
    }

.login-header {
    text-align: center;
    margin-bottom: 10px;
}

.login-avatar {
    width: 50px;
    height: 50px;
    margin: 0 auto 15px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #e5e5e5;
    background: #f8f9fa;
}

    .login-avatar img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.login-header label {
    margin: 0 0 10px;
    font-size: 28px;
    font-weight: 600;
    color: #1d3176;
}

.login-description {
    margin: 0;
    color: #666;
    font-size: 14px;
    line-height: 1.5;
}

.security-message {
    display: flex;
    align-items: center;
    gap: 15px;
}

.security-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    border-radius: 50%;
    background: #eef4ff;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .security-icon i {
        font-size: 28px;
        color: #0d6efd;
    }

.security-text {
    color: #666;
    font-size: 12px;
    line-height: 1.5;
    font-weight: 600;
}
