﻿
body {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, #e2f0fa 100%);
    min-height: 100vh;
    /*display: flex;*/
    align-items: center;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.login-container {
    max-width: 450px;
    align-items: center;
    margin: 0 auto;
}

.login-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.card-header-custom {
    background: #005A9E;
    /* background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);*/
    color: white;
    padding: 2rem;
    text-align: center;
}

    .card-header-custom h1 {
        font-size: 1.75rem;
        font-weight: 600;
        margin: 0;
    }

.logo-img {
    max-width: 100px;
    height: auto;
    margin-bottom: 1rem;
}

.card-header-custom .company-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 0.875rem;
    display: inline-block;
    margin-top: 0.5rem;
    transition: color 0.2s;
}

    .card-header-custom .company-link:hover {
        color: white;
    }

.card-body-custom {
    padding: 2rem;
}

.form-label {
    font-weight: 500;
    color: #374151;
    margin-bottom: 0.5rem;
}

.form-control {
    border-radius: 8px;
    border: 1px solid #d1d5db;
    padding: 0.75rem;
    transition: all 0.2s;
}

    .form-control:focus {
        border-color: #667eea;
        box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
    }

.btn-login {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 8px;
    padding: 0.75rem;
    font-weight: 600;
    width: 100%;
    color: white;
    transition: transform 0.2s, box-shadow 0.2s;
}

    .btn-login:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
        background: linear-gradient(135deg, #5568d3 0%, #6a3f91 100%);
        color: white;
    }

.helper-links {
    display: flex;
    justify-content: space-between;
    margin-top: 1rem;
    font-size: 0.875rem;
}

    .helper-links a {
        color: #667eea;
        text-decoration: none;
        transition: color 0.2s;
    }

        .helper-links a:hover {
            color: #764ba2;
            text-decoration: underline;
        }

.card-footer-custom {
    background: #f9fafb;
    padding: 1.5rem 2rem;
    border-top: 1px solid #e5e7eb;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
}

    .footer-links a {
        color: #6b7280;
        text-decoration: none;
        transition: color 0.2s;
    }

        .footer-links a:hover {
            color: #374151;
        }

.version-info {
    text-align: center;
    color: #9ca3af;
    font-size: 0.75rem;
    margin-top: 0.5rem;
}

.copyright {
    text-align: center;
    color: #6b7280;
    font-size: 0.875rem;
}

    .copyright a {
        color: #667eea;
        text-decoration: none;
    }

        .copyright a:hover {
            text-decoration: underline;
        }
