body {
  font-family: "Poppins", sans-serif;
  background-color: rgb(102, 228, 247);
}

#signup{
display:none;
}

#btnsignup{
display:inline-block;
}

#btnlogin{
display:inline-block;
}

#signin{
  display:none;
}

#home{
    display:none;
}

#creerVote{
    display:none;
}

#ListVote{
    display:none;
}

#listVotant{
    display:none;
}

#messageindex{
    display:none;
}

#listeVoter{
    display:none;
}

#scrutins{
    display:none;
}

.details-btn {
    background-color: #007bff;
    color: #fff;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
}

.details-btn:hover {
    background-color: #0056b3;
}

.bg-lightblue {
    background-color: #ADD8E6; /* Utilisation d'un code de couleur pour le bleu clair */
}

#sect1 {
    display: none;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f8f9fa;
}

#sect2 {
    display: none;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f8f9fa;
}

#sect3 {
    display: none;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f8f9fa;
}

/* Importing fonts from Google */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

/* Reseting */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

.wrapper {
    max-width: 400px;
    min-height: 100px;
    margin: 80px auto;
    padding: 40px 10px 30px 30px;
    background-color: #ecf0f3;
    border-radius: 15px;
    box-shadow: 13px 13px 20px #cbced1, -13px -13px 20px #fff;
}

.title {
    max-width: 150px;
    min-height: 50px;
    /*padding: 40px 10px 30px 30px;*/
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    border-radius: 15px;
    background-color: #cbced1;
    box-shadow: 13px 13px 20px #cbced1, -13px -13px 20px #fff;
}

.home{
    max-width: 900px;
    min-height: 1000px;
    margin: 80px auto;
    padding: 40px 10px 30px 30px;
    background-color: #ecf0f3;
    border-radius: 15px;
    box-shadow: 13px 13px 20px #cbced1, -13px -13px 20px #fff;
}

.scrutins{
    max-width: 700px;
    min-height: 100px;
    margin: 80px auto;
    padding: 40px 10px 30px 30px;
    background-color: #ecf0f3;
    border-radius: 15px;
    box-shadow: 13px 13px 20px #cbced1, -13px -13px 20px #fff;
}

.afficheScrutin{
    max-width: 700px;
    min-height: 100px;
    /*margin: 50px auto;*/
    padding: 10px 5px 5px 5px;
    background-color: #ecf0f3;
    border-radius: 5px;
    box-shadow: 13px 13px 20px #cbced1, -13px -13px 20px #fff;
}

.vote{
    max-width: 500px;
    min-height: 400px;
    margin: 40px auto;
    /*padding: 40px 10px 30px 30px;*/
    background-color: #ecf0f3;
    border-radius: 15px;
    box-shadow: 13px 13px 20px #cbced1, -13px -13px 20px #fff;
}


.wrapper .name {
    font-weight: 600;
    font-size: 1.4rem;
    letter-spacing: 1.3px;
    padding-left: 10px;
    color: #232323;
}

.wrapper .form-field input {
    width: 100%;
    display: block;
    border: none;
    outline: none;
    background: none;
    font-size: 1.2rem;
    color: #666;
    padding: 10px 15px 10px 10px;
    /* border: 1px solid red; */
}

.wrapper .form-field {
    padding-left: 10px;
    margin-bottom: 20px;
    border-radius: 20px;
    box-shadow: inset 8px 8px 8px #cbced1, inset -8px -8px 8px #fff;
}

.wrapper .form-field .fas {
    color: #555;
}

.wrapper .btn {
    box-shadow: none;
    width: 100%;
    height: 40px;
    background-color: #03A9F4;
    color: #fff;
    border-radius: 25px;
    box-shadow: 3px 3px 3px #b1b1b1,
        -3px -3px 3px #fff;
    letter-spacing: 1.3px;
}

.wrapper .btn:hover {
    background-color: #039BE5;
}

.wrapper a {
    text-decoration: none;
    font-size: 0.8rem;
    color: #03A9F4;
}

.wrapper a:hover {
    color: #039BE5;
}

@media(max-width: 380px) {
    .wrapper {
        margin: 30px 20px;
        padding: 40px 15px 15px 15px;
    }
}