@font-face {
    font-family: 'Bahnschrift';
    src: url('/frontend/fonts/Bahnschrift-Font-Family/BAHNSCHRIFT.TTF') format('truetype');
}

/* General Styles */
body {
    font-family: 'Bahnschrift', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background: linear-gradient(to right, #d41919, #520501) !important; 
    color: #333;
}

/* Navbar Styles */
.navbar {
    height: 90px;
    background-color: #ffffff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.navbar-brand, .nav-link {
    color: white !important;
    text-decoration: none;
}

.nav-link:hover {
    color: #6e0503 !important;
}

/* Form Styles */
.registration-form {
    background-color: #939294;
    padding: 50px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 900px;
    margin-right: 20px; /* Separar del borde derecho */
}

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

.registration-form .btn-primary {
    background-color: #b81111;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
}

/* Left Section Styles */


#left-section .text-container {
    position: absolute;
    top: 35%;
    left: 45%;
    transform: translate(-50%, -50%);
    color: white;
    width: 70%;
}

#left-section .text-container h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

#left-section .text-container p {
    font-size: 1.6rem;
}

/* Footer Styles */
footer {
    background-color: #1e1e66;
    color: white;
    padding: 20px;
    text-align: center;
}

/* Responsiveness */
@media (max-width: 768px) {
    .navbar {
        height: 95px; /* Reducimos la altura del header en dispositivos móviles */
    }

    .navbar-brand img {
        height: 35px !important;  /* Ajustamos el tamaño del logo en móviles */
    }

    .registration-form {
        padding: 20px;
        margin-right: 10px; /* Margen reducido para pantallas pequeñas */
    }

    #left-section {
        height: 50vh;
    }
}
