@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap");

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: "Roboto", sans-serif;
    background: linear-gradient(to right, #2c3e50, #34495e);
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.login-box {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 40px 30px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    width: 100%;
    max-width: 380px;
}

.login-header {
    text-align: center;
    margin-bottom: 25px;
}

.login-header .logo-icon {
    font-size: 50px;
    color: #2980b9;
    margin-bottom: 10px;
}

.login-header h2 {
    font-size: 22px;
    color: #2c3e50;
}

.input-group {
    position: relative;
    margin-bottom: 20px;
}

.input-group i {
    position: absolute;
    top: 12px;
    left: 10px;
    color: #888;
}

.input-group input {
    width: 100%;
    padding: 12px 12px 12px 38px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 15px;
    transition: border-color 0.3s;
}

.input-group input:focus {
    border-color: #2980b9;
    outline: none;
}

.btn-login {
    width: 100%;
    padding: 12px;
    border: none;
    background-color: #2980b9;
    color: white;
    font-size: 16px;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-login:hover {
    background-color: #1f6391;
}

.footer-text {
    margin-top: 20px;
    text-align: center;
    color: #aaa;
}
.formulario {
    max-width: 500px;
    background-color: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.formulario label {
    display: block;
    margin-top: 10px;
    font-weight: bold;
}

.formulario input,
.formulario select {
    width: 100%;
    padding: 8px;
    margin-top: 5px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
}
