:root{
        --white: #FFFFFF;
        --black: #000000;
        --very-light-pink: #C7C7C7;
        --text-input-field: #F7F7F7;
        --hospital-green: #ACD9B2;
        --sm: 14px;
        --md: 16px;
        --lg: 18px;
}

*{
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

body{
    background-color: #003063;
    margin-top: 3rem;
    display: flex;
}

.login{
    background: white;
    padding: 2rem;
    justify-content: center;
    align-items: center;
    border-radius: 8px
}

.nombreCoop{
    text-align: center;
    padding-bottom: 20px;
    color: #003063;
    font-size: 45px;
}
.nombreCoop span{
    color: green;
    font-size: 30px;
    text-align: start;
}

.logotipo{
    display: grid;
    grid-template-columns: 15% 2fr;
    justify-content: space-around; 
}

.logotipo h1{
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo{
    width: 55px;
}

.campos{
    display: grid;
    grid-template-columns: 50% 2fr;
    gap: 1rem;
}

.label{
    color: black;
}
.titulo{
    color: red;
    text-align: center;
    font-size: 30px;
    height: 4rem;
}

.form{
    line-height: 1.5rem;
}

.label{
    font-weight: bold;
}

.encabezado{
    padding-bottom: 30px;
}
.encabezado p{
    text-align: center;
    padding-top: 20px;
}

.input{
    border: none;
    height: 30px;
    border-radius: 8px;
    margin-bottom: 30px;
    padding: 10px 0;
    font-size: 1rem;
    width: 100%;
    background-color: var(--text-input-field);
}

.primary-buttom{
    background-color: rgb(223,193,0);
    color: white;
    font-size: 1rem;
    font-weight: bold;
    border: none;
    border-radius: 10px;
    padding: 1rem;
    width: 100%;
}
.primary-buttom:hover{
    cursor:pointer;
    background-color: yellow;
}

.form{
    border-bottom: solid var(--very-light-pink);
    padding-bottom:1rem;
}

.enlaces{
    text-align: center;
}
.enlace{
    padding-top: 1rem;
}