*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: arial;
}
body{
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
}
.login-container{
    background: #081447;
    width: 340px;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 30px rgba(0,0,0,0.6);
    animation: fadeIn 0.8s ease-in-out;
}


.logo{
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 4px solid #18a0fb;
    margin-bottom: 10px;
}


h2{
    font-family: Algerian;
    color: #ffffff;
    margin-bottom: 20px;
    letter-spacing: 1px;
}


form{
    display: flex;
    flex-direction: column;
    text-align: left;
}

label{
    color: #ffffff;
    font-size: 14px;
    margin-top: 12px;
}

/* INPUTS */
input[type="text"],
input[type="password"]{
    padding: 12px;
    border-radius: 10px;
    border: none;
    outline: none;
    margin-top: 6px;
    font-size: 14px;
}

input:focus{
    border: 2px solid #18a0fb;
    box-shadow: 0 0 8px #18a0fb;
}


.botones{
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.btn{
    flex: 1;
    padding: 12px;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn-principal{
    background: #18a0fb;
    color: white;
}

.btn-principal:hover{
    background: #0d7fcc;
    transform: scale(1.05);
}

.btn-secundario{
    background: transparent;
    color: #18a0fb;
    border: 2px solid #18a0fb;
}

.btn-secundario:hover{
    background: #18a0fb;
    color: white;
    transform: scale(1.05);
}
select{
    padding: 12px;
    border-radius: 10px;
    border: none;
    margin-top: 6px;
    font-size: 14px;
    outline: none;
}

select:focus{
    border: 2px solid #18a0fb;
    box-shadow: 0 0 8px #18a0fb;
}






