* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    height: 100vh;
    overflow: hidden;
}

.login-container {
    display: flex;
    height: 100vh;
}

/* Lado Esquerdo - Roxo */
.left-panel {
    flex: 1;
    background: linear-gradient(135deg, #ff8c00 0%, #ff7700 50%, #ff6600 100%);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

/* Elementos decorativos */
.decoration {
    position: absolute;
    border-radius: 50%;
    opacity: 0.15;
    animation: fadeInOut 4s ease-in-out infinite;
}

@keyframes fadeInOut {
    0%, 100% {
        opacity: 0.05;
        transform: scale(0.95);
    }
    50% {
        opacity: 0.25;
        transform: scale(1.05);
    }
}

.circle-1 {
    width: 300px;
    height: 300px;
    border: 2px solid white;
    top: 10%;
    left: -100px;
    animation-delay: 0s;
}

.circle-2 {
    width: 40px;
    height: 40px;
    border: 2px solid white;
    top: 15%;
    right: 10%;
    animation-delay: 1.5s;
}

.circle-3 {
    width: 25px;
    height: 25px;
    background: white;
    bottom: 20%;
    left: 15%;
    animation-delay: 3s;
}

.plus-1 {
    position: absolute;
    color: white;
    font-size: 40px;
    opacity: 0.2;
    top: 20%;
    left: 15%;
    animation: fadeInOut 5s ease-in-out infinite;
    animation-delay: 0.5s;
}

.plus-2 {
    position: absolute;
    color: white;
    font-size: 30px;
    opacity: 0.2;
    bottom: 30%;
    right: 20%;
    animation: fadeInOut 5s ease-in-out infinite;
    animation-delay: 2.5s;
}

.dots {
    position: absolute;
    top: 5%;
    right: 5%;
    display: grid;
    grid-template-columns: repeat(3, 8px);
    gap: 8px;
    opacity: 0.3;
    animation: fadeInOut 6s ease-in-out infinite;
    animation-delay: 1s;
}

    .dots span {
        width: 8px;
        height: 8px;
        background: white;
        border-radius: 50%;
    }

/* Ondas decorativas */
.wave-lines {
    position: absolute;
    bottom: 15%;
    left: 5%;
    opacity: 0.2;
}

    .wave-lines path {
        stroke: white;
        stroke-width: 2;
        fill: none;
    }

/* Logo e Texto */
.logo-section {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

    .logo-section img {
        width: 200px;
        height: auto;
        filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.2));
    }

.company-name {
    color: #ff8c00;
    font-size: 28px;
    font-weight: 600;
    text-align: center;
    letter-spacing: 1px;
}

.welcome-text {
    position: absolute;
    top: 15%;
    left: 10%;
    color: white;
    z-index: 10;
}

    .welcome-text h1 {
        font-size: 36px;
        font-weight: 700;
        margin-bottom: 10px;
    }

    .welcome-text p {
        font-size: 14px;
        opacity: 0.9;
        line-height: 1.5;
    }

.right-panel {
    flex: 1;
    background: #f8f9fa;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
}

.login-form {
    background: white;
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
}

    .form-logo {
        text-align: center;
        margin-bottom: 20px;
    }

    .form-logo img {
        height: 60px;
        width: auto;
    }

    .login-form h4 {
        color: #2d3748;
        font-size: 28px;
        font-weight: 600;
        margin-bottom: 30px;
        text-align: center;
        text-shadow: 2px 2px 8px rgba(128, 128, 128, 0.3);
        position: relative;
    }

    .login-form h4::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 3px;
        background: linear-gradient(90deg, transparent, #c0c0c0, transparent);
        border-radius: 2px;
    }

.form-group {
    margin-bottom: 20px;
}

    .form-group label {
        display: block;
        color: #718096;
        font-size: 13px;
        margin-bottom: 8px;
        font-weight: 500;
    }

    .form-group input {
        width: 100%;
        padding: 12px 15px;
        border: 1px solid #e2e8f0;
        border-radius: 8px;
        font-size: 14px;
        transition: all 0.3s;
        background: #f7fafc;
    }

        .form-group input:focus {
            outline: none;
            border-color: #ff8c00;
            background: white;
            box-shadow: 0 0 0 3px rgba(255, 140, 0, 0.1);
        }

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.remember-me {
    display: flex;
    align-items: center;
    gap: 8px;
}

    .remember-me input[type="checkbox"] {
        width: 16px;
        height: 16px;
        cursor: pointer;
    }

    .remember-me label {
        font-size: 13px;
        color: #4a5568;
        cursor: pointer;
    }

.forgot-password {
    font-size: 13px;
    color: #ff8c00;
    text-decoration: none;
    font-weight: 500;
}

    .forgot-password:hover {
        text-decoration: underline;
    }

.login-message {
    text-align: center;
    margin: 20px 0 30px 0;
}

    .login-message p {
        color: #4a5568;
        font-size: 14px;
        line-height: 1.5;
    }

.btn-signin {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #ff8c00 0%, #ff6600 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(255, 140, 0, 0.3);
    text-decoration: none;
}

    .btn-signin:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(255, 140, 0, 0.4);
        color: white;
    }

    .btn-signin:active {
        transform: translateY(0);
    }

.divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 25px 0;
    position: relative;
}

.divider::before,
.divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid #e2e8f0;
}

.divider span {
    padding: 0 15px;
    color: #718096;
    font-size: 13px;
    font-weight: 500;
}

#microsoftLoginForm {
    margin-top: 0;
}

#microsoftLoginForm .form-group {
    margin-bottom: 15px;
}

#microsoftLoginForm input {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s;
    box-sizing: border-box;
}

#microsoftLoginForm input:focus {
    outline: none;
    border-color: #ff8c00;
    background: white;
    box-shadow: 0 0 0 3px rgba(255, 140, 0, 0.1);
}

.btn-microsoft {
    width: 100%;
    padding: 12px;
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    color: #2d3748;
    font-size: 15px;
    font-weight: 600;
    margin-top: 10px;
}

.btn-microsoft:hover {
    background: #f7fafc;
    border-color: #cbd5e0;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.btn-microsoft img {
    height: 24px;
    width: auto;
}

.btn-microsoft span {
    color: #2d3748;
}

.signup-link {
    text-align: center;
    margin-top: 25px;
    font-size: 14px;
    color: #718096;
}

    .signup-link a {
        color: #ff8c00;
        text-decoration: none;
        font-weight: 600;
    }

        .signup-link a:hover {
            text-decoration: underline;
        }

@@media (max-width: 768px) {
    .login-container {
        flex-direction: column;
    }

    .left-panel {
        min-height: 300px;
    }

    .welcome-text {
        position: static;
        text-align: center;
        margin-bottom: 20px;
    }

    .logo-section img {
        width: 150px;
    }

    .company-name {
        font-size: 22px;
    }

    .right-panel {
        padding: 20px;
    }

    .login-form {
        padding: 30px 25px;
    }
}
