html{
    background: #3A45A5;
    font-family: 'Montserrat', sans-serif;

}

/* L’agenda d’Orion */

.titre{
    width: auto;
    height: auto;
    text-align: center;

    font-family: "Montserrat", sans-serif;
    font-style: normal;
    font-weight: bold;
    font-size: 2em;

    color: white;

    margin: auto 0;
}

.wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 10px;
    grid-auto-rows: minmax(100px, auto);
}

.img{
    width: 40%;
    height: auto;
}

/* -------------------------------------- PAGE CONNEXION & PAGE INSCRIPTION -------------------------------------- */
/* Rectangle base */

.rectangle {
    display: flex;
    width: 600px;
    height: 480px;
    background: #E5E5E5;;
    opacity: 0.8;
    border-radius: 15px;
    justify-content: center;
    align-items: center;
    margin:auto;
}

.column{
    display: flex;
    flex-direction: column;
    font-size: 0.8em;
    font-weight: bold;
}



.error{
    margin: 25px auto;
    text-align: center;
}
/* Rectangle Co/Inscr */

.rectCoInscr {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    width: 487px;
    height: 58px;
    background: #ffffff;
    border-radius: 10px;
    margin:auto;
    list-style-type: none;
    font-size: 1.25em;
    font-weight: bold;
    color: #3A45A5;
}

.align-button{
    display:flex;
    justify-content: center;
}

/* Rectangle Identifiant/Mot de passe */

.rectIdMDP {
    width: 478px;
    height: 46px;
    padding-left: 10px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 5px;
    border:none
}

.rectIdMDP:focus{
    outline: none;
}

/* Bouton Inscription ou Connexion */

.btnCoInscr{
    position: absolute;
    width: auto;
    height: auto;
    transition: 0.5s;
    padding: 5px 25px;
    border:none;
    background: #3A45A5;
    border-radius: 10px;
    color: white;
    font-size: 1.15em;
    text-align: center;
    overflow: hidden;
}

.btnCoInscr:after{
    content: "";
    background: #f1f1f1;
    display: block;
    position: absolute;
    padding-top: 300%;
    padding-left: 350%;
    margin-left: -50px !important;
    margin-top: -120%;
    opacity: 0;
    border-radius:50% ;
    transition: all 1.5s
}

.text{
    position: relative;
    z-index: 2;
    color: white;
    transition: color 0.5s ease-in-out;
}


.btnCoInscr:active:after{
    padding: 0;
    margin: 0;
    opacity: 1;
    transition: 0s
}

.btnCoInscr:hover{
    background:#4C5AD9;
    transition: 0.5s ease-in-out;
}

.superposition{
    position: absolute;
    width: 50%;
    height: 100%;
    border-radius: 10px;
    background: #3A45A5;
    z-index:1;
    top: 0;
    left: 0;
    transition: left 0.3s ease-in-out;
}




footer {
    /* Made by Killian Gouzien & Georgio Sorin Designed by Chloé Pillerel */
    position: absolute;
    bottom: 0;
    left:50%;
    transform: translateX(-50%);


    font-family: "Montserrat", sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 12px;
    line-height: 15px;

    margin:10px;
    color: #FFFFFF;
}

#identifiantLabel {
    display: none;
}

.error {
    color: red;
}

/* -------------------------------------- PAGE DEVOIRS -------------------------------------- */


/* Rectangle base */

.rectBaseDevoirs {
    width: auto;
    height: auto;
    margin: auto;
    padding: 25px;
    text-align: center;
    border-spacing: 0 ;


    background: #E5E5E5;
    opacity: 0.8;
    border-radius: 15px;

}


tr.spaceUnder>td {
    padding: 1em;
}

input[type=date]::-webkit-calendar-picker-indicator,
input[type=date]::-webkit-inner-spin-button {
    position: absolute;
    display: flex;
    -webkit-appearance: none;
}

.btn{
    border:none;
    background: rgba(255,255,255,0);
}
.btn img{
    width: 20px;
    height: auto;
}
/* Rectangle pour les matières, tâches et dates */

.rectMTD {
    width: 218px;
    height: 32px;
    left: 805px;
    top: 531px;
    text-align: center;
    border: none;

    background: #FFFFFF;
    border-radius: 10px;
}

.spacer{
    padding:50px 0 10px 0;
}

table thead tr th{
    font-size: 1.5em;
    font-weight: bold;
}