/* eFaas Login Branding Page Styles */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: #f3f4f6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 64px 20px;
}

.login-container {
    background: white;
    border-radius: 8px;
    width: 100%;
    max-width: 448px;
    padding: 32px;
    text-align: center;
}

.logo-container {
    margin-bottom: 24px;
}

.logo-container img {
    width: 200px;
    height: 48px;
    margin: 0 auto;
    display: block;
}

.logo-text {
    margin-top: 12px;
    font-size: 11px;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.4;
}

h1 {
    font-size: 20px;
    font-weight: 400;
    color: #1f2937;
    margin-bottom: 24px;
}

form {
    margin: 24px 0;
}

.login-button {
    padding: 10px 25px;
    background-color: #164998;
    color: #fff;
    border: solid 1px #164998;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: 'Poppins', sans-serif;
}

.login-button:hover {
    background-color: #0f3870;
    border-color: #0f3870;
}

.login-button:active {
    background-color: #0a2850;
    border-color: #0a2850;
}

.login-button:focus {
    outline: none;
    box-shadow: 0 0 0 2px #fff, 0 0 0 4px #164998;
}

.login-button:disabled {
    background-color: #9ca3af;
    border-color: #9ca3af;
    cursor: not-allowed;
}

.login-button svg {
    margin-right: 10px;
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.info-text {
    margin-top: 24px;
    font-size: 16px;
    font-weight: 500;
    color: #6b7280;
    line-height: 1.5;
    text-align: center;
}

.info-text-additional {
    margin-top: 15px;
    font-size: 14px;
    color: #6b7280;
    line-height: 1.5;
    text-align: left;
    max-width: 400px;
}

.info-text-contact {
    margin-top: 15px;
    font-size: 14px;
    color: #6b7280;
    line-height: 1.5;
    text-align: left;
    max-width: 400px;
}

.info-text-contact ul {
    margin: 0;
    padding-left: 20px;
    list-style-type: disc;
}

.info-text-contact li {
    margin-bottom: 5px;
}

.login-button-link {
    padding: 10px 25px;
    border: solid 1px #164998;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    background-color: #164998;
    text-decoration: none;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.login-button-link:hover {
    background-color: #0f3870;
    border-color: #0f3870;
}

.login-button-link:active {
    background-color: #0a2850;
    border-color: #0a2850;
}

.login-button-link:focus {
    outline: none;
    box-shadow: 0 0 0 2px #fff, 0 0 0 4px #164998;
}

.login-button-link svg {
    margin-right: 10px;
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

@media (max-width: 480px) {
    body {
        padding: 32px 16px;
    }

    .login-container {
        padding: 24px;
    }

    h1 {
        font-size: 18px;
    }

    .logo-container img {
        width: 160px;
        height: 38px;
    }
}
