@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400..900&display=swap');



/* Reset CSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    font-family: Arial, sans-serif;
}

body {
    line-height: 1.6;
    background-color: var(--background-color);
}

ul, ol {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
}

button {
    cursor: pointer;
    border: none;
    background: none;
}

/* Defining colors */
:root {
    --primary-color: #2ecc71;
    --secondary-color: #27ae60;
    --accent-color: #e74c3c;
    --background-color: #F4F3F8;
    --text-color: #2c3e50;
}


.fondo{
    width: 100%;
    min-height: 100vh;
    background-image: url(../img/fondo.png);
}

.tituloCargador{
    color: white;
    font-family: "Orbitron", serif;
    font-optical-sizing: auto;
    font-weight: 900;
    font-style: normal;
    font-size: 30px;
    text-align: center;
}

.btnEntrar{
    color: var(--text-color);
    font-family: "Orbitron", serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
    font-size: 15px;
    text-align: center;
    border-radius: 10px 0 0 10px;
    background-color: white;
    padding: 10px;
    transition: background-color 0.5s ease;
    transition: color 0.5s ease;
    border: 1px solid white;

}

.btnRegistrar{
    color: white;
    font-family: "Orbitron", serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
    font-size: 15px;
    text-align: center;
    border-radius: 0 10px 10px 0;
    background-color: none;
    padding: 10px;
    border: 1px solid white;
    transition: background-color 0.5s ease;
    transition: color 0.5s ease;
}

.bloqueLogin{
    width: 95%;
    background-color: white;
    margin-top: 40px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 15px;
    box-shadow: 1px 1px 2px rgba(209, 196, 196, 0.1);
}

.titularLogin{
    color: var(--text-color);
    font-family: "Orbitron", serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
    font-size: 20px;
    text-align: center;
}

.inputForm{
    width: 85%;
    margin-left: auto;
    margin-right: auto;
    padding: 10px;
    border: 2px solid lightgray;
    border-radius: 10px;
    color: var(--text-color);
    font-family: "Orbitron", serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
    font-size: 15px;
    margin-bottom: 20px;
}

.inputForm:focus{
    outline: none;
    border: 1px solid var(--primary-color);
}

.inputForm::placeholder{
    color:lightgray;
    font-family: "Orbitron", serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
    font-size: 15px;
}

.avisoPass{
    color: grey;
    font-family: "Orbitron", serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
    font-size: 12px;
    text-align: center;
    text-align: end;
    width: 85%;
    margin-left: auto;
    margin-right: auto;
}

.btnLogin{
    background-color: var(--primary-color);
    color: white;
    padding: 18px;
    border-radius: 10px;
    font-family: "Orbitron", serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
    font-size: 12px;
    width: 85%;
    text-align: center;
    box-shadow: 2px 4px 10px rgba(0, 0, 0, 0.2);
}

.filaError{
    height: 30px;
}


.msnError{
    color: var(--accent-color);
    font-family: "Orbitron", serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
    font-size: 12px;
    text-align: left;
    width: 85%;
    margin-left: auto;
    margin-right: auto;
}