* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
}

.container {
    position: relative;
    height: 100vh;
    width: 100vw;
    overflow: hidden;
}

.container::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 70%;
    height: 100%;
    background: url('/static/assets/reunion.jpg');
    background-size: cover;
    background-position: center;
    z-index: 1;
    mask-image: linear-gradient(to left,
            rgba(0, 0, 0, 1) 80%,
            rgba(0, 0, 0, 0));
    -webkit-mask-image: linear-gradient(to left,
            rgba(0, 0, 0, 1) 80%,
            rgba(0, 0, 0, 0));
}

.container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right,
            rgba(61, 88, 198, 0.95),
            rgba(0, 15, 78, 0.85) 60%,
            rgba(0, 15, 78, 0.75));
    z-index: 2;
}

.navbar {
    position: relative;
    z-index: 3;
    height: 77px;
    background-color: white;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.title {
    font-size: 20px;
    font-weight: 400;
    line-height: 45px;
    color: #2562E6;

}
.title h2{
    font-family: "Libre Bodoni", serif;
    font-weight: 400;
}

.fecha_hora {
    display: flex;
    gap: 15px;
    font-size: 10px;
    color: #0A239E;
}

.log {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 380px;
    gap: 30px;
    margin-top:100px;
    margin-left: 300px;
    color:white;

}
.header_card{
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.header_card h2{
    font-size: 20px;
}
.logo {
    background-color: #fff;
    width: fit-content;
    height: fit-content;
    margin: auto;
    display: flex;
    justify-content: center;
    border-radius: 100%;
    
}
.log
form {
    display: flex;
    flex-direction: column;
    width: 90%;
    height: 240px;
    background-color: #E6DAE8;
    align-items: center;
    gap: 8px;
    border-radius: 20px;
    justify-content: center;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1); 
}

form input {
    width: 280px;
    height: 50px;
    border-radius: 10px;
    padding-left: 5px;
    background-color: #2562E6;
    opacity: 60%;
    color: white;
    font-size: 16px;
    border: none; 
    box-shadow: 0px 2px 8px rgba(37, 98, 230, 0.2);
    transition: all 0.3s ease;
}

form input:focus {
    outline: none;     box-shadow: 0px 4px 12px rgba(37, 98, 230, 0.3);     
    opacity: 70%; 
}

input::placeholder {
    color: white;
    font-size: 16px;
}

form button {
    width: 280px;
    height: 50px;
    border-radius: 10px;
    background-color: #2562E6;
    opacity: 85%;
    font-size: 18px;
    color: white;
    border: none;
    box-shadow: 0px 4px 10px rgba(37, 98, 230, 0.3); 
    cursor: pointer;
    transition: all 0.3s ease; 
}

form button:hover {
    transform: translateY(-2px); 
    box-shadow: 0px 6px 15px rgba(37, 98, 230, 0.4); 
}

form button:active {
    transform: translateY(1px); 
    box-shadow: 0px 2px 8px rgba(37, 98, 230, 0.3); 
}
.pass{
    font-size: 16px;
}
.error-message {
    color: #d32f2f;
    text-align: center;
    margin-top: 15px;
    font-size: 14px;
    visibility: hidden;
}
