/* General Styles */
/* *{
    border: 1px solid red;
} */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(135deg, #c1dff7, #141C3C);
    height: 91vh;
}

/* Form Container */
.formulario{
    width: 100%;
    height: 60vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
form {
    background: #489bbd;
    padding: 30px 40px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.8);
    width: 20%;
    text-align: center;
}

/* Heading */
h2 {
    margin-top: 4%;
    text-align: center;
    padding: 1%;
    font-size: 28px;
    color: #ffff;
}

/* Labels and Inputs */
label {
    display: block;
    margin-bottom: 10px;
    font-weight: bold;
    text-align: left;
    font-size: 20px;
    color: #ffffff;
}

input[type="text"], input[type="password"] {
    width: 90%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid transparent;
    border-radius: 5px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.3s;
}

input[type="text"]:focus {
    border-color: #000;
}
input[type="password"]:focus{
    border-color: #000;
}

/* Button */
button {
    background: #141C3C;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
    font-weight: 700;
}

/* button:hover {
    background: #141C3C;
    color: #ffffff;
    font-weight: 700;
} */
