@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Orbitron', sans-serif; /* Corregí el nombre de la fuente */
}
body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: url('../Img/fond.png') center/cover;
}
.login-container {
    display: flex;
    width: 800px;
    height: 500px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    background: white;
}
.form-section {
    width: 50%;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.form-section h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #333;
}
.input-group {
    position: relative;
    margin-bottom: 20px;
}
.input-group input {
    width: 100%;
    padding: 12px;
    padding-left: 40px;
    border: none;
    border-radius: 25px;
    background: #f1f1f1;
    outline: none;
    font-size: 16px;
}
.input-group i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
}
.login-btn {
    width: 100%;
    padding: 12px;
    background: #ff3d00;
    color: white;
    border: none;
    border-radius: 25px;
    font-size: 18px;
    cursor: pointer;
    transition: 0.3s;
}
.login-btn:hover {
    background: #000000;
    color: #ff3d00;
}
.right-section {
    width: 50%;
    background: url('../Img/fond2.png') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    padding: 20px;
    font-size: 20px;
    font-weight: bold;
    backdrop-filter: brightness(0.8);
}

.logo {
    width: 100%;
    height: 74px;
    margin-bottom: 10px;
}