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

body, html {
    height: 100%;
    width: 100%;
}

.background {
    background-image: url('/img/copec.webp');
    background-size: cover;
    background-position: center;
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.4);
}

.login-container {
    position: relative;
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    z-index: 10;
    max-width: 400px;
    width: 90%;
    text-align: center;
}
.login-container h2 {
text-align: center;
font-size: 24px;
font-weight: bold;
color: #003965;
margin-bottom: 15px;
}
.logo {
    width: 120px;
    margin-bottom: 20px;
}

form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    text-align: left;
}

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


.boton-copec {
    background-color: #0033a0;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    font-family: 'Quicksand', sans-serif;
    display: block;
    margin: 20px auto 0 auto;
    transition: background-color 0.3s ease;
}

.boton-copec:hover {
    background-color: #215ee0;
}


.recover-password {
    text-align: center;
    display: block;
    margin-top: 10px;
    color: #0033a0;
    text-decoration: none;
}

.recover-password:hover {
    text-decoration: underline;
}

.invalid-feedback{
    color: red;
    font-size: 12px;
    margin-top: 5px;
    text-align: left;
}
