﻿@import"https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;1,900&display=swap";

/* Corporate Login Form - Complete & Self-Contained */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    background-size: cover;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    padding: 20px;
    line-height: 1.6;
    background-attachment: fixed;
}

@media screen and (orientation: portrait) {
    body {
        align-items: center;
    }
}


@media screen and (orientation: landscape) {
    body {
        align-items: center;
    }
}

@media (width <= 1000px) {
    body {
        align-items: normal;

    }
}

    .login-container {
        width: 100%;
        max-width: 420px;
    }

    .warning-msg span {
        position: relative;
        margin-top: 8px;
        text-align: center;
        width: 100%;
        color: #f04438;
        display: block;
        align-content: center;
    }

    .login-card {
        background: #ffffff;
        border: 1px solid #e1e5e9;
        border-radius: 12px;
        padding: 40px;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1), 0 20px 48px rgba(0, 0, 0, 0.1);
        position: relative;
        transition: all 0.3s ease;
    }

    .login-header {
        text-align: center;
        margin-bottom: 36px;
    }

    .company-logo {
        margin-bottom: 20px;
    }

    .logo-icon {
        width: 64px;
        height: 64px;
        //background: linear-gradient(135deg, #2563eb, #3b82f6);
        border-radius: 12px;
        align-items: center;
        justify-content: center;
        font-size: 24px;
        color: white;
        box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
    }

    .login-header h2 {
        color: #1e293b;
        font-size: 1.875rem;
        font-weight: 600;
        margin-bottom: 8px;
        letter-spacing: -0.025em;
    }

    .login-header p {
        color: #64748b;
        font-size: 15px;
        font-weight: 400;
        display: block;
        align-content: center;
    }

    /* Form Group & Input Styles */
    .form-group {
        margin-bottom: 24px;
        position: relative;
    }

    .input-wrapper {
        position: relative;
        display: flex;
        flex-direction: column;
    }

        .input-wrapper input {
            background: #f8fafc;
            border: 2px solid #e2e8f0;
            border-radius: 8px;
            padding: 16px 16px;
            color: #1e293b;
            font-size: 16px;
            font-weight: 400;
            transition: all 0.3s ease;
            width: 100%;
            outline: none;
        }

            .input-wrapper input:focus {
                background: #ffffff;
                border-color: #2563eb;
                box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
            }

                .input-wrapper input:focus + label,
                .input-wrapper input:valid + label {
                    transform: translateY(-36px) translateX(4px) scale(0.85);
                    color: #2563eb;
                    font-weight: 600;
                    background: #ffffff;
                    padding: 0 8px;
                }

        .input-wrapper label {
            position: absolute;
            left: 16px;
            top: 16px;
            color: #64748b;
            font-size: 16px;
            font-weight: 500;
            transition: all 0.3s ease;
            pointer-events: none;
            transform-origin: left top;
        }

    .input-border {
        position: absolute;
        bottom: 0;
        left: 50%;
        width: 0;
        height: 2px;
        background: linear-gradient(90deg, #2563eb, #3b82f6);
        transition: all 0.3s ease;
        transform: translateX(-50%);
        border-radius: 2px;
    }

    .input-wrapper input:focus ~ .input-border {
        width: 100%;
    }



    /* Form Options */
    .form-options {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 28px;
        flex-wrap: wrap;
        gap: 16px;
    }


    /* Login Button */
    .login-btn {
        width: 100%;
        background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
        border: none;
        border-radius: 8px;
        padding: 16px 24px;
        color: white;
        font-size: 16px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        position: relative;
        margin-bottom: 24px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
    }


    .btn-text {
        transition: opacity 0.3s ease;
    }



    /* Divider */
    .divider {
        text-align: center;
        margin: 24px 0;
        position: relative;
    }

        .divider::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 0;
            right: 0;
            height: 1px;
            background: #e2e8f0;
            transform: translateY(-50%);
        }

        .divider span {
            background: #ffffff;
            color: #64748b;
            padding: 0 20px;
            font-size: 13px;
            font-weight: 500;
            //text-transform: uppercase;
            letter-spacing: 0.5px;
            position: relative;
            z-index: 1;
            display: block;
            align-content: center;
        }

    /* SSO Options */
    .sso-options {
        display: flex;
        flex-direction: column;
        gap: 12px;
        margin-bottom: 24px;
        padding-left: 19px;
    }



    /* Mobile Responsive */
    @media (max-width: 480px) {
        body {
            padding: 16px;
        }

        .login-card {
            padding: 28px;
        }

        .login-header h2 {
            font-size: 1.625rem;
        }

        .company-logo {
            margin-bottom: 16px;
        }

        .logo-icon {
            width: 56px;
            height: 56px;
            font-size: 20px;
        }

        .sso-options {
            gap: 10px;
        }
    }

    .app-icon {
        display: inline-block;
        width: 30px;
        height: 30px;
        line-height: 30px;
        margin-right: 7px;
        vertical-align: -9px;
        background: no-repeat left;
        background-size: cover;
    }

    li a {
        color: #0088cc;
    }


