﻿
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    min-height: 100vh;
    background: linear-gradient(135deg, #e0f2fe 0%, #bfdbfe 50%, #93c5fd 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    position: relative;
    overflow: hidden;
}

/* Decorative blobs */
.blob-1 {
    position: absolute;
    top: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: rgba(147, 197, 253, 0.4);
    border-radius: 50%;
    filter: blur(60px);
}

.blob-2 {
    position: absolute;
    bottom: -150px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: rgba(191, 219, 254, 0.5);
    border-radius: 50%;
    filter: blur(80px);
}

.blob-3 {
    position: absolute;
    top: 50%;
    right: 20%;
    width: 200px;
    height: 200px;
    background: rgba(224, 242, 254, 0.6);
    border-radius: 50%;
    filter: blur(50px);
}

/* Main card */
.card {
    display: flex;
    width: 100%;
    max-width: 1000px;
    background: white;
    border-radius: 24px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    position: relative;
    z-index: 1;
}

/* Left panel */
.left-panel {
    flex: 1;
    background: linear-gradient(180deg, #f0f9ff 0%, #dbeafe 100%);
    padding: 48px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

    .left-panel h1 {
        font-size: 32px;
        font-weight: 700;
        color: #1e293b;
        line-height: 1.2;
        margin-bottom: 16px;
    }

    .left-panel p {
        font-size: 15px;
        color: #64748b;
        line-height: 1.6;
    }

.left-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.language-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: none;
    border: none;
    color: #64748b;
    font-size: 14px;
    cursor: pointer;
}

    .language-btn:hover {
        color: #334155;
    }

.nav-links {
    display: flex;
    gap: 24px;
}

    .nav-links a {
        font-size: 14px;
        color: #3b82f6;
        text-decoration: none;
    }

        .nav-links a:hover {
            text-decoration: underline;
        }

/* Right panel - Form */
.right-panel {
    flex: 1;
    padding: 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-header {
    text-align: center;
    margin-bottom: 32px;
}

    .form-header h2 {
        font-size: 24px;
        font-weight: 700;
        color: #1e293b;
        margin-bottom: 8px;
    }

    .form-header p {
        font-size: 14px;
        color: #94a3b8;
    }

.form-group {
    margin-bottom: 20px;
}

    .form-group label {
        display: block;
        font-size: 14px;
        font-weight: 500;
        color: #475569;
        margin-bottom: 8px;
    }

.input-wrapper {
    position: relative;
}

.form-group input {
    width: 100%;
    height: 44px;
    padding: 0 16px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 14px;
    color: #1e293b;
    transition: border-color 0.2s, box-shadow 0.2s;
}

    .form-group input:focus {
        outline: none;
        border-color: #3b82f6;
        box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
    }

    .form-group input[type="password"] {
        padding-right: 44px;
    }

.toggle-password {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #94a3b8;
    cursor: pointer;
    padding: 4px;
}

    .toggle-password:hover {
        color: #64748b;
    }

.password-hint {
    font-size: 12px;
    color: #94a3b8;
    margin-top: 6px;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
}

    .checkbox-group input[type="checkbox"] {
        width: 16px;
        height: 16px;
        accent-color: #3b82f6;
    }

    .checkbox-group label {
        font-size: 14px;
        color: #64748b;
    }

    .checkbox-group a {
        color: #3b82f6;
        text-decoration: none;
    }

        .checkbox-group a:hover {
            text-decoration: underline;
        }

.divider {
    display: flex;
    align-items: center;
    margin: 24px 0;
}

    .divider::before,
    .divider::after {
        content: '';
        flex: 1;
        height: 1px;
        background: #e2e8f0;
    }

    .divider span {
        padding: 0 16px;
        font-size: 12px;
        color: #94a3b8;
    }

.social-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 24px;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 44px;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    color: #475569;
    cursor: pointer;
    transition: background 0.2s;
}

    .social-btn:hover {
        background: #f8fafc;
    }

    .social-btn svg {
        width: 18px;
        height: 18px;
    }

.submit-btn {
    width: 100%;
    height: 44px;
    background: #3b82f6;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    color: white;
    cursor: pointer;
    transition: background 0.2s;
    margin-top: 2rem;
}

    .submit-btn:hover {
        background: #2563eb;
    }

.form-footer {
    text-align: center;
    margin-top: 24px;
    font-size: 14px;
    color: #64748b;
}

    .form-footer a {
        color: #3b82f6;
        font-weight: 600;
        text-decoration: none;
    }

        .form-footer a:hover {
            text-decoration: underline;
        }

.d-none {
    display: none !important;
}

/* Responsive */
@media (max-width: 768px) {
    .left-panel {
        display: none;
    }

    .card {
        max-width: 440px;
    }

    .right-panel {
        padding: 32px 24px;
    }
}

.logo-empresa {
    margin: 1rem auto;
    width: 90%;
}