*{ 
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
}

html, body {
    height: 100%;
    overflow: hidden;
}

body {
    background-color: #f2f2f2;
}

/* ARRANCA MAIN */
.body {
    background-image: url(../img/ADAMA02_mobile.jpg);
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: 100% 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 20px;
}  

.main-style{
    background-color:#ffffff;
    font-size: 1.5em;
    font-weight: 400;
    color:#242424;    
    max-width: 350px;
    width: 100%;
    padding-bottom: 1px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    overflow: hidden; /* Para que los hijos respeten el border-radius */
}

.diferent-logins{
    background-color: #00783F;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 60px;
    border-radius: 8px 8px 0 0;
}

.diferent-logins-dev{
    background-color: #1f91dc;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 60px;
    border-radius: 8px 8px 0 0;
}

.signin{
    color: #f2f2f2;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
    font-size: 24px;
    font-weight: 400;
    background-color: #00783F;
    text-decoration: none;
    text-align: center;
    letter-spacing: 1px;
}

.signin-dev{
    color: #f2f2f2;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
    font-size: 24px;
    font-weight: 400;
    background-color: #1f91dc;
    text-decoration: none;
    text-align: center;
    letter-spacing: 1px;
}

.link{
    padding-right: 5px;
    text-decoration: none;
    color: #7DB41E;
    font-size: 15px;
    font-weight: 700;
}

.fab {
    padding-right: 10px;
}

.instructions-format{
    display: block;
    font-size: 12px;
    font-weight: 400;
    text-align: center;
    padding: 5px;
    margin: 5px 5px;
}

.main-forms-container{
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    max-width: 320px;
    justify-content: center;
    margin: 0 auto;
}

.input{
    border: 1px solid #e0e0e0;
    border-radius: 0.5pc;
    margin: 5px;
}

.form-format{
    height: 30px;
    width: 100%;
    font-size: 15px;
    font-weight: 400;
    background-color: #ffffff;
    border: 0;
    outline: none;
    color: #111111;
    margin: 5px auto;
    padding: 5px 12px;
    text-align: left;
}

p.feedback{
    font-size: 12px;
    font-weight: 400;
    color: red;
    margin: 5px 15px;
    padding-left: 5px;
}

.instructions-crear {
    display: block;
    font-size: 12px;
    font-weight: 400;
    text-align: center;
    padding: 15px;
    margin: 0 5px 5px;
} 

.entry-button{ 
    display: block;
    text-align: center;
    width: 320px;
    height: 40px;
    font-size: 16px;
    font-weight: 400;
    color: #ffffff;
    margin:  25px auto;
    background-color:#9D1D96 ;
    border-radius: 4px;
    border: #752157 2px solid;
}

.rememberMe-container {
    display: flex;    
    max-width: 320px;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}

/* TERMINA MAIN */

/* Tablet */
@media (min-width: 720px) { 
    .body {
        background-image: url(../img/ADAMA02_tablet.jpg);
    }
}

/* Desktop */
@media (min-width: 1024px) { 
    .body {
        background-image: url(../img/ADAMA02.jpg);
    }
}