/*
 * Centered Login for Frontend
 */
body.login-frontend {
    background: #f4f7f6;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    font-family: 'Inter', sans-serif;
}

.login-frontend-box {
    width: 400px;
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.login-frontend-logo {
    text-align: center;
    margin-bottom: 25px;
}

.login-frontend-logo img {
    max-width: 150px;
}

.login-frontend-header {
    text-align: center;
    margin-bottom: 25px;
    color: #2c3e50;
}

.login-frontend-header h2 {
    font-weight: 700;
    font-size: 24px;
    margin: 0;
}

.login-frontend-box .form-group {
    margin-bottom: 15px;
}

.login-frontend-box .control-label {
    font-weight: 600;
    color: #5e6d7a;
}

.login-frontend-box .form-control {
    height: 45px;
    border-radius: 8px;
    border: 1px solid #dce1e5;
    transition: border-color 0.2s;
}

.login-frontend-box .form-control:focus {
    border-color: #5e7d5e; /* Maros Green */
    box-shadow: none;
}

.login-frontend-box .btn-primary {
    width: 100%;
    height: 45px;
    background: #5e7d5e;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    transition: background 0.2s;
}

.login-frontend-box .btn-primary:hover {
    background: #4a634a;
}

.login-frontend-footer {
    margin-top: 20px;
    text-align: center;
    font-size: 13px;
    color: #95a5a6;
}
