body {
    margin: 0;
    padding: 0;
    background-image: url('/static/images/fondo.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    height: 100vh;
    color: white;
}

.logo {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 10;
}

.logo img {
    width: 150px;
    opacity: 0.95;
}

.container {
    display: flex;
    height: 100vh;
    align-items: center;
    justify-content: space-between;
    padding: 0 100px;
}

.left-section {
    width: 50%;
}

.left-section h1 {
    font-size: 3em;
    font-weight: bold;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.right-section {
    width: 40%;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.right-section h2 {
    margin-bottom: 30px;
    font-size: 1.8em;
}

.input-group {
    width: 100%;
    display: flex;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    padding: 0 10px;
    transition: 0.3s ease;
}

.input-group:focus-within {
    box-shadow: 0 0 0 3px rgba(255, 102, 0, 0.4);
}

.input-group .icon {
    font-size: 1.2em;
    margin-right: 10px;
    color: #555;
}

.input-group input {
    border: none;
    background: transparent;
    flex: 1;
    padding: 12px 5px;
    font-size: 1em;
    color: #333;
}

.input-group input:focus {
    outline: none;
}

form input[type="submit"] {
    width: 100%;
    padding: 12px;
    background-color: #ff6600;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1.1em;
    transition: background-color 0.3s ease;
    margin-top: 10px;
}

form input[type="submit"]:hover {
    background-color: #cc5200;
}

.footer-text {
    margin-top: 15px;
    text-align: center;
    font-size: 0.9em;
    color: #ddd;
}
