* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background-color: #fffff;
    background: linear-gradient(to bottom, #e0e0e0, #f5f5f5);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-image: url('/images/fondo.jpeg');
    background-size: cover;


}
h2 h5{
    color:#666666;

}
.container {
    background-color: #fff;
    width: 85%;
    max-width: 1000px;
    display: flex;
    flex-direction: row;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.left-section {
    background-color: #f6f6f6;
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.logo {
    width: 250px;
    margin-bottom: 20px;
}
.logo2 {
    display:none;
    width: 250px;
    margin-bottom: 20px;
}

.verify-text {
    font-size: 1.2em;
    margin-bottom: 10px;
    color:#666666;
}

.secure-url {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    font-size: 0.9em;
    color: green;
}

.secure-icon {
    margin-right: 10px;
}

.instructions p {
    margin-bottom: 10px;
    font-size: 0.9em;
}

.right-section {
    flex: 1;
    padding: 40px;
}

.right-section h2 {
    margin-bottom: 20px;
    font-size: 1.5em;
}

form {
    display: flex;
    flex-direction: column;
}

form label {
    margin-bottom: 5px;
}

form input {
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.forgot-link {
    margin-bottom: 20px;
    color: #007bff;
    text-decoration: none;
    font-size: 0.9em;
    align-self: flex-end;
}

.forgot-link:hover {
    text-decoration: underline;
}

.login-button {
    padding: 10px;
    background-color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-bottom: 20px;
}

.extra-links {
    display: flex;
    justify-content: space-between;
    background-color: #fff;
    border: 1px solid #ccc;
    color: #000;
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
    flex: 1;
    margin: 0 5px;
}

@media (max-width: 800px) {
    .container {
        flex-direction: column;
    }
    .left-section {
        display: none;
    }
    .right-section {
        width: 100%;
    }
    .logo2 {
        display:block;
    }
}
.separador{
    height: 20px;
    border:0px;
    color:transparent;
}

.pie{
    position:fixed;
    bottom:1%;

}
