@import "variables.css";
@import "animations.css";
@import "header.css";
@import "footer.css";
@import "switch.css";

@import "connexion_ccadmin.css";

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

    transition: background-color .2s ease-out;
}

/********************** MAIN **********************/
main {
    background: #f1f1f1;
    min-height: calc(100vh - var(--footer-size) - var(--header-size)); /* 100vh - header - footer */
}

h1 {
    font-weight: normal;
    text-align: center;
    background: var(--primary-color);
    color: #f1f1f1;
    padding: .3rem;
    animation: slidein-left .5s ease-out;
}


/********************** FORM **********************/
.form-container {
    width: 300px;
    margin: 0 auto;
}

/* Inputs */
.input-group {
    margin: 1.5rem 0;
}
.input-group label {
    display: flex;
    flex-direction: column;
}
.input-group input {
    width: 100%;
    border-radius: 0px 0px 0px 0px;
    overflow: hidden;
    border-width: 1px;
    border-style: solid;
    border-color: #edecec;
    color: #333;
    font-size: 1rem;
    padding: 1rem;
    background-color: #fff !important;
}
.show-password {
    color: #747476;
    text-align: right;
    font-size: 0.8rem;
    cursor: pointer;
}
.show-password:hover {
    color: var(--secondary-color);
}


/********************** FORM **********************/
.btns-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 1em 0;
}
.btn-A {
    position: relative;
    background: var(--primary-color);
    padding: 5px;
    border-radius: 5px;
    border: none;
    font-weight: initial;
    color: #f1f1f1;
    width: 100%;
    font-size: 1.3rem;
    border: solid #f1f1f1 1px;
}
.btn-A::after {
    font-size: 32px;
    line-height: 1em;
    content: ">";
    opacity: 0;
    position: absolute;
    left: 50%;
    transition: all .2s;
    font-style: normal;
    font-weight: 400;
    text-shadow: none;
  }
.btn-A:hover {
    cursor: pointer;
    border: solid #666 1px;
}

.btn-A:hover::after {
    opacity: 1;
    left: 75%
}
.btn-ghost {
    background: none;
    padding: 5px;
    border-radius: 5px;
    border: none;
    font-weight: initial;
    color: #747476;
}
.btn-ghost:hover {
    cursor: pointer;
    color: var(--secondary-color);
}




/********************** LOGOS **********************/
.logos-partners-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: white;
}
.logos-partners-container-img {
    width: 10rem;
    display: flex;
    justify-content: center;
    margin: 1rem;   
}
.logos-partners-container > div:nth-child(1) {
    animation: slidein-right .6s ease-out;
}
.logos-partners-container > div:nth-child(2) {
    animation: slidein-left .6s ease-out;
}
.logos-partners-container div img {
    width: 100%;
    height: auto;
}
.logos-partners-container-lvl-2{
    display: flex;
    justify-content:center;
    align-items:center;
}