/* Generator Service Portal Styles */

.gsp-login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 60vh;
    padding: 40px 20px;
}

.gsp-login-box {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 40px;
    max-width: 450px;
    width: 100%;
}

.gsp-logo {
    text-align: center;
    margin-bottom: 30px;
}

.gsp-logo img {
    max-width: 250px;
    height: auto;
}

.gsp-login-box h2 {
    text-align: center;
    color: #333;
    margin-bottom: 10px;
    font-size: 28px;
}

.gsp-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 30px;
    font-size: 14px;
}

.gsp-error {
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
    padding: 15px;
    border-radius: 4px;
    margin-bottom: 20px;
    font-size: 14px;
}

.gsp-form-group {
    margin-bottom: 20px;
}

.gsp-form-group label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-weight: 600;
    font-size: 14px;
}

.gsp-form-group input[type="text"],
.gsp-form-group input[type="password"] {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    transition: border-color 0.3s;
    box-sizing: border-box;
}

.gsp-form-group input[type="text"]:focus,
.gsp-form-group input[type="password"]:focus {
    outline: none;
    border-color: #0073aa;
    box-shadow: 0 0 0 3px rgba(0, 115, 170, 0.1);
}

.gsp-form-group small {
    display: block;
    margin-top: 5px;
    color: #666;
    font-size: 12px;
}

.gsp-checkbox label {
    display: flex;
    align-items: center;
    font-weight: normal;
    cursor: pointer;
}

.gsp-checkbox input[type="checkbox"] {
    margin-right: 8px;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.gsp-submit-btn {
    width: 100%;
    padding: 14px;
    background: #0073aa;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.gsp-submit-btn:hover {
    background: #005a87;
}

.gsp-submit-btn:active {
    transform: translateY(1px);
}

.gsp-help {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    text-align: center;
}

.gsp-help p {
    margin: 5px 0;
    font-size: 13px;
    color: #666;
}

.gsp-help a {
    color: #0073aa;
    text-decoration: none;
}

.gsp-help a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 600px) {
    .gsp-login-box {
        padding: 30px 20px;
    }
    
    .gsp-login-box h2 {
        font-size: 24px;
    }
}
