body {
    background: url('../img/Teschi.jpg') no-repeat center center fixed;
    background-size: cover;
}

.contenedor {
    max-width: 100%;
    width: 90%;
    max-width: 400px;
    min-height: 700px;
    max-height: calc(100vh + 100px);
    margin: 100px auto;
    background-color: rgba(28, 76, 27, 0.9);
    position: relative;
    border-radius: 50px 0 50px 0;

}

.triangulo1 {
    width: 0px;
    height: 0px;
    position: absolute;
    right: 0;
    border-bottom: 80px solid transparent;
    border-left: 80px solid transparent;
    border-right: 80px solid rgba(36, 116, 33, 0.8);
    border-top: 80px solid rgba(36, 116, 33, 0.8);
}

.triangulo2 {
    width: 0px;
    height: 0px;
    position: absolute;
    bottom: 0;
    border-bottom: 80px solid rgba(36, 116, 33, 0.8);
    border-left: 80px solid rgba(36, 116, 33, 0.8);
    border-right: 80px solid transparent;
    border-top: 80px solid transparent;
}

.login-container {
    width: 100%;
    max-width: 300px;
    position: relative;
    top: 120px;
    margin-left: 12%;
    align-items: center;
    background: #247421;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

form {

    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

a {
    padding: 10px;
}

a:hover{
    color: #183b18;
}

i.fa-icon {
    color: #1C4C1B;
}

label {
    color: #F1FCF1;
}

button {
    padding: 10px;
    background-color: #1C4C1B;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

button:hover {
    background-color: #2A9226;
}

.custom-icon {
    position: relative;
    top: -90px;
    color: #F1FCF1;
}

/* Responsivo */
@media (max-width: 768px) {
    .login-container {
        max-width: 70%;
        padding: 15px;
    }

    .custom-icon {
        font-size: 80px;
    }
}

/*Estas lineas de codigo son para ocultar el icono de ojo para la contraseña por defecto Para Chrome, Edge, Opera */
input::-ms-reveal,
input::-ms-clear {
  display: none;
}

input[type="password"]::-webkit-credentials-auto-fill-button,
input[type="password"]::-webkit-clear-button,
input[type="password"]::-webkit-inner-spin-button {
  display: none !important;
}

/* Para Firefox  */
input[type="password"] {
  -moz-appearance: textfield;
}
