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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    height: 100vh;
    display: flex;
    background: #f8fafc;
}

.left-panel {
    flex: 1;
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    position: relative;
}

.logo {
    width: 150px;
    height: 100px;
    margin-bottom: 40px;
}

.logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.welcome-title {
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 20px;
}

.welcome-subtitle {
    font-size: 16px;
    opacity: 0.9;
    text-align: center;
    line-height: 1.5;
    margin-bottom: 40px;
}

.switch-btn {
    background: transparent;
    border: 2px solid white;
    color: white;
    padding: 12px 32px;
    border-radius: 25px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.switch-btn:hover {
    background: white;
    color: #1e40af;
}

.copyright {
    position: absolute;
    bottom: 20px;
    font-size: 12px;
    opacity: 0.7;
}

.right-panel {
    flex: 1;
    background: #f8fafc;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px;
}

.form-container {
    width: 100%;
    max-width: 400px;
}

.form-title {
    font-size: 36px;
    font-weight: 600;
    color: #334155;
    text-align: center;
    margin-bottom: 40px;
}

.form-group {
    margin-bottom: 20px;
}

.form-row {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.form-row input {
    flex: 1;
}

input {
    width: 100%;
    padding: 16px 20px;
    border: none;
    border-radius: 12px;
    background: #cbd5e1;
    font-size: 16px;
    color: #64748b;
    outline: none;
}

input::placeholder {
    color: #64748b;
}

input:focus {
    background: #b1c5db;
}

.submit-btn {
    width: 100%;
    background: #1e40af;
    color: white;
    border: none;
    padding: 16px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 20px;
    transition: background 0.3s ease;
}

.submit-btn:hover {
    background: #1e3a8a;
}

.enlace-registro-mobil {
    display: none;
    margin-top: 20px;
    gap: 10px;
    width: 100%;
    height: auto;
    justify-content: center;
}

.enlace-registro-mobil a {
    color: #1e40af;
    text-decoration: none;
}

@media (max-width: 768px) {
    body {
        display: block;
    }

    .copyright {
        display: none;
    }

    .switch-btn {
        display: none;
    }

    .welcome-subtitle {
        display: none;
    }

    .welcome-title {
        display: none;
    }

    .logo {
        margin: 10px 0px 10px 0px;
    }

    .enlace-registro-mobil {
        display: flex;
    }
}