*{
    margin:0;
    padding:0;
    box-sizing: border-box;
    font-family: 'Nunito', sans-serif;
}
body{
    
        background-repeat: no-repeat;
        background-size: cover;
   
}

.image-bg-color {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); 
    z-index: -1; 
}



.home-yo-title{
    height:3.5em;
    width:100%;
    background-color:hsla(227, 63%, 18%, 0.2);
    display:flex;
    justify-content:center;
    align-items:center;
}
.home-yo-title img{
  position:center;
  height: 2em;
}

.join-club-welcome{
    display:flex;
    justify-content:center;
    margin-top:calc(50px + 2%);
    position:relative;
}

.join-club{
 background-color:hsla(205, 90%, 48%);
 border-radius:50px 0 0 50px;
 width:40%;
 padding:2em 1em 2em 2.5em;
 color:hsla(0, 0%, 100%, 1);


}
.change-successful .join-club{
    background-color:hsla(124, 100%, 37.1%);
}
.recover-password .join-club{
    width:15em;
}
.welcome-login{
 background-color:hsla(0, 0%, 100%);
 border-radius:0px 50px 50px 0px;
 width:45%;
 padding:2em 2.5em;
 color:black;
}

.join-club p.title{
    font-weight:700;
    line-height:30px;
    font-size:24px;
    margin-bottom:8px;
}

.join-club p.join-club-description{
    font-weight:400;
    
}
.new-password-email{
    position:absolute;
    top:10px;
    color:white;

}
.community-svg{
    background-color:hsla(0, 0%, 100%, 0.1);
    border:solid 1px hsla(0, 0%, 100%, 1);
    width:50px;
    height:50px;
    border-radius:10px;
    display:flex;
    justify-content:center;
    align-items:center;
    margin-right:1rem;
}
.community-svg svg{
    align-items:center;
    stroke:white;
}

.join-club .club-groups{
    margin-top:2em;

}
.club-groups .community{
    display:flex;
    justify-content:space-evenly;
    margin:1em 0;

}
.community .group{
align-items:center;
width:80%;
}
.community .group-description{
    font-size:small;
    color:hsla(0, 0%, 100%, 0.7);

}
.group .group-title{
    margin-bottom:0;
    font-size:16px;
    margin-top:5px;
}


.login-upper{
   text-align:center; 
}
.login-title{
    margin-top:1em;
    color:hsla(227, 63%, 18%, 1);
    font-weight:700;
    font-size:24px;    
    line-height:30px;
    margin-bottom:0;
}
.login-upper .login-description{
    margin-top:0.3em;
    color:hsla(227, 63%, 18%, 1);
}
form{
    margin-top:2em;
    display:flex;
    flex-direction:column;
    justify-content:space-evenly;
}
form input{
    border:none;


}
.input-group{
    display:flex;
    height:3em;
    width:100%;
    margin-bottom:1em;
    background-color:hsla(227, 63%, 18%, 0.05);
    border-radius:12px;
    padding:0.5em 0;
    align-items:center;

}
.input-group input
{
    background-color:transparent;
    width:84%;
    padding-left:5%;

}
.input-group:focus-within {
    border:1px solid hsla(205, 90%, 48%, 1);
    opacity:1;
}
.input-group input:focus{
    outline:none;
    font-size:1em;
    color:black;
    font-weight:500;
    background-color:transparent;
}
.input-group svg{
    text-align:center;
    width:16%;
    stroke:black;
    stroke-opacity:0.2;
}
.input-group:first-child svg{
    width:14%;
}
.new-password .input-group:first-child svg{
    width:16%;
}
.input-group:focus-within svg {
    stroke: hsla(205, 90%, 48%, 1);
    stroke-opacity:0.7;
}


.input-group input[type="password"], .input-group input[type="email"], .input-group input[type="text"]{
    border-left:solid 1px hsla(0, 0%, 0%, 0.2)    ;
}
.input-group #togglePassword, #toggleConfirmPassword{
    width:14%;
    display:flex;
    justify-content:center;
    align-items:center;
   }
.fa-eye-blue{
    color: hsla(205, 90%, 48%, 1);
    opacity:0.8;
}
.fa-eye{
    color:black;
    opacity:0.5;
}
.checkbox-group input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.checkbox-group label {
    position: relative;
    padding-left: 25px;
    font-size: 16px;
    cursor: pointer;
}

.checkbox-group label:before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 17px;
    height: 17px;
    border: 1px solid #ccc;
    border-radius:5px;
    background-color: #fff;
}

.checkbox-group input[type="checkbox"]:checked + label:before {
    background-color:hsla(227, 63%, 18%, 0.05);
    text-align:center;
    content: '\2713'; 
    font-size:0.8em;
    font-weight:700;
}

.checkbox-group label:hover:before {
    border-color: #999;
}

.checkbox-group input[type="checkbox"]:checked + label:before {
    transition: transform 0.5s ease-in-out; 
    position: absolute;
    left: 0;
    top: 0;
    transform: translateY(-50%);
}

.checkbox-group input[type="checkbox"]:checked + label:before {
    animation: growAndShrink 0.7s ease-in-out forwards; 
}

@keyframes growAndShrink {
    0% {
        transform: scale(1.1); 
    }
    50% {
        transform: scale(1.3);
    }
    100% {
        transform: scale(1);
        color: hsla(205, 90%, 48%, 1);
        border-color: hsla(205, 90%, 48%, 1); 
    }
}

.checkbox-forgot-password{
    display:flex;
    justify-content:space-between;
    margin-bottom:0.3em;
}
.recover-password .checkbox-forgot-password{
    display:flex;
    justify-content:flex-end;
}
.checkbox-forgot-password p a{
 color:black;

}
.checkbox-forgot-password p a:hover{
    text-decoration:underline;
    text-decoration-color:hsla(205, 90%, 48%, 1);
    text-decoration-thickness: 1.5px;
}

.recover-password .checkbox-forgot-password p a {
    font-size:0.8em;
    text-decoration:underline;
    text-decoration-color:black;
}
form  input[type="submit"]{
    background-color:hsla(205, 90%, 48%, 1);
    width:100%;
    color:white;
    border-radius:12px;
    padding:0.8em;
    font-size:18px;
    font-weight:500;
    margin-top:0.5em;
    transition:1s;

}
form input[type="submit"]:hover{
        
        
        background-color: hsla(228, 65%, 12%, 1);
    
    
}
.change-successful button{
    width:100%;
    color:black;
    border-radius:12px;
    padding:1em;
    font-size:16px;
    font-weight:500;
    margin-top:1.5em;
    transition:1s;
    border:none;
    background-color:white;
    box-shadow: 1px 3px 10px rgba(0, 0, 0, 0.6);

}
.change-successful button:hover{
    background-color:hsla(228, 65%, 12%, 1);
    color:white;
}
.recover-password form input[type="submit"]{
    padding:0.6em 1em;
}
.change-successful .container{
    position:relative;
}
.check-mark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2; 
  }
.new-to-yomeco{
margin-top:0.6em;
text-align:center;
font-size:small;
color:black;
}
.new-to-yomeco a{
    color:black;
    text-decoration-color:black;
    text-decoration-thickness: 1.5px;
}
.recover-password .new-to-yomeco{
    position:relative;
}
.recover-password .new-to-yomeco a{
     position:absolute;
     top:2em;
     left:30%;
     text-decoration:underline;
     text-decoration-color:white;
}
.recover-password .new-to-yomeco a:hover{
    color:white;
    text-decoration-color:hsla(205, 90%, 48%, 1);
    text-decoration-thickness: 1px;
}

.quick-access-links-list ul{

    display:flex;
    justify-content:center;
    margin-bottom:4em;
    margin-top:2em;
    list-style-type: none;
}
.quick-access-links-list ul a{
    color:hsla(0, 0%, 100%, 1);
    font-weight:600;
    text-decoration:none;
    font-size:1em;
    margin:0 1em;
    text-wrap:nowrap;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);

}
.recover-password .quick-access-links-list ul a{
    margin:0 0.9em;
    font-size:0.9em;
}
.quick-access-links-list ul a:hover{
    font-size:1.01em;
    color:hsla(205, 90%, 48%, 1);
    text-decoration:underline;
    }
    .recover-password .quick-access-links-list ul a:hover{
        font-size:0.95em;
        color:hsla(205, 90%, 48%, 1);
    text-decoration:underline;
    }
.separator {
    text-align: center; 
    margin-top: 6em; 
}

.line {
    width: 10%; 
    border: none; 
    border-top: 1px solid hsla(0, 0%, 100%, 1);
    display: inline-block; 
    vertical-align: middle; 
}

.or {
    display: inline-block; 
    margin: 0 10px; 
    color:hsla(0, 0%, 100%, 1);

}
.home-yo-guestmode{
    margin:3em auto;
    background-color:hsla(205, 90%, 48%, 0.2);
    color:hsla(0, 0%, 100%, 1);
    padding:1em;
    text-align:center;
    border-radius:12px;
    margin-bottom:4em;
    width:fit-content;
    backdrop-filter: blur(18.6px);
    -webkit-backdrop-filter: blur(18.6px);
    box-shadow: -1px 4px 30px rgba(0, 0, 0, 0.8);

}
.home-yo-guestmode a{
text-decoration:none;
color:hsla(0, 0%, 100%, 1);
font-size:0.9em;
transition:0.5s;
}

.home-yo-guestmode a:hover{
    font-size:0.92em;
    color:white;
    text-decoration:underline;
}
    
.sign-up-page .existing-user{
    position:absolute;
    bottom:2em;
}

.sign-up-page .join-club{
    width:20em;
  
}


.sign-up-page .country-name-flag:focus-within{
    border:1.5px solid hsla(205, 90%, 48%);
    border-radius:5px;
}
.sign-up-page .title-form select:focus{
    border:1.5px solid hsla(205, 90%, 48%);
}
.sign-up-page .join-club .existing-user{
    font-size:small;

}
.sign-up-page .title-company .company input:focus{
    border:1.5px solid hsla(205, 90%, 48%);
  
}
.sign-up-page .join-club .existing-user a {
color:white;
text-decoration-color:white;

}

.sign-up-page .fname input:focus, .lname input:focus{
    border:1.5px solid hsla(205, 90%, 48%);

}
.sign-up-page .join-club-welcome .join-club svg{
    margin-bottom:0.5em;
    font-size:1.5em;

}
.sign-up-page .login-upper-icons{
    display:flex;
    justify-content:space-around;
    align-items:center;
}
.sign-up-page .login-upper-icons img{
    height:2em;
    margin-bottom:1em;
}
.sign-up-page .welcome-login
{
    width:calc(37em+2.2vh)
}
.progress-container {
    width: 14em;
    background-color: #e0e0e0;
    border-radius: 0.5em;
  }

  .progress-bar {
    width: 20%;
    height: 0.3em;
    background-color:#0C8CE9;
    border-radius: 5px;
  }
  .toggle-container {
    display: flex;
    border: 2px solid hsla(227, 63%, 18%, 0.05);;
    border-radius: 5px;
    overflow: hidden;
    width:100%;
    background-color:hsla(227, 63%, 18%, 0.05);
    margin:auto;
    font-size:1em;

  }
  
.sign-up-page .login-upper img{
    margin-top:1em;
}
  .toggle-option {
    flex: 1;
    text-align: center;
    padding: 2px 0;
    cursor: pointer;
   font-size:small;
    transition: background-color 0.3s ease;
  }
 
  .toggle-option.selected {
    background-color: white;
  }
 .sign-up-page .title-company select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 140 140" xmlns="http://www.w3.org/2000/svg"><polygon points="70,112 10,52 130,52" style="fill:black;"/></svg>') no-repeat right 10px center;
    background-size: 12px 12px;
    padding:0.5em;
    background-color:hsla(227, 63%, 18%, 0.05);
   outline:none;
   border:none;
   border-radius:5px;
  }
  .sign-up-page .title-company .company input {
    background-color:hsla(227, 63%, 18%, 0.05);
    outline:none;
    border:none;
    border-radius:5px;
    padding:0.48em;

  }
  .sign-up-page .company-not-selected{
    opacity:0.2;
   
  }
  .sign-up-page .title-company{
margin-top:1.5em;
display:flex;
justify-content:space-between;
align-items:center;
width:100%;
  }
  .sign-up-page .title-form, .sign-up-page .company{
    display:flex;
    flex-direction:column;
  }
  .sign-up-page .company{
    width:70%;
  }
  .sign-up-page .title-form{
    width:20%;
  }
  .sign-up-page .fl-name{
    display:flex;
    justify-content:space-between;
    margin-top:1.5em;
  }
  .sign-up-page .fname, .lname{
    display:flex;
    flex-direction:column;
    width:48%;
  }
.sign-up-page .fname input, .lname input{
    outline:none;
    border:none;
    background-color:hsla(227, 63%, 18%, 0.05);
padding:0.5rem;
border-radius:7px;
}
.sign-up-page .country-name-flag{
    display:flex;
    width:100%;
    justify-content:space-evenly;
    align-items:center;
    background-color:hsla(227, 63%, 18%, 0.05);
    border-radius:7px;
    padding:0.5em;
}
.country-name-flag img{
    height:1.5em;
    margin:auto;
}
.country-name-flag  .flag-image{
    width:15%;
    border-right:1px solid hsla(227, 63%, 18%, 0.5);

}
.sign-up-page .submit{
     background-color:white;
     color:black;
     margin-top:1.5em;
     box-shadow: 1px 2px 8px rgba(0, 0, 0, 0.6);
}

.sign-up-page .submit:hover{
    color:white;
}
.flag-image img{
    margin:auto;

}
.select-country{
    display:flex;
    flex-direction:column;
    justify-content:space-around;
    margin-top:0.5em;
}

.country-name-flag select{
    /* width:80%; */
    width:100%;
    outline:none;
    border:none;
    background-color:transparent;
    padding:0 0.5em;
    /* appearance: none;

    -webkit-appearance: none;
    -moz-appearance: none;
    background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 140 140" xmlns="http://www.w3.org/2000/svg"><polygon points="70,112 10,52 130,52" style="fill:black;"/></svg>') no-repeat right 10px center; */


}

  .toggle-option.not-selected {
    background-color:hsla(227, 63%, 18%, 0.05);
  }
  .sign-up-page .existing-user{
    position:absolute;
    bottom:2em;
}
.sign-up-page .join-club{
    width:14em;

}
.sign-up-page .welcome-login{
    padding:2em 1em;

}


.login-information .progress-bar{
    width:40%;
  }
  .login-information .input-group svg{
    text-align:center;
    width:10%;
    stroke-opacity:1;
}
.login-information .input-group:focus-within .email-icon{
    color:hsla(205, 90%, 48%, 1);
    opacity:0.9;
}
.back-next-btn-signup{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-top:1em;
}
.login-information .input-group:focus-within svg{
    opacity:1;
}
.login-information .back-next-btn-signup .back-arrow:hover{
    background-color:hsla(228, 65%, 12%, 1);
    color:white;

}

.login-information .username-group{
    position:relative;
}
.login-information .username-check-mark{
    position:absolute;
    color:green;
    background:transparent;
    right:0;
    bottom:0;
    display:none;
}
.available{
    position:absolute;
    color:green;
    background:transparent;
    right:0;
    bottom:-0.5em;
}
.not-available{
    position:absolute;
    color:red;
    background:transparent;
    right:0;
    bottom:-0.5em;
}

.input-group .email-icon{
    text-align:center;
    width:10%;
    color:black;
    opacity:0.4;
        
}
.login-information .input-group:focus-within .email-icon{
    color:hsla(205, 90%, 48%, 1);
    opacity:0.9;
}
.back-arrow{
    transform:rotate(180deg)
  }
 
  .login-information .back-next-btn-signup .back-arrow{
    width:15%;
    background-color:hsla(227, 63%, 18%, 0.05);
    color:black;
    box-shadow: 0.5px 1px 3px rgba(0, 0, 0, 0.6);
    border-radius:12px;
    padding:1em;
    margin-top:0;
    transition:1s;
    text-align:center;
    font-size:16px;
    cursor:pointer;

}
.login-information .back-next-btn-signup .back-arrow:hover{
 background-color:hsla(228, 65%, 12%, 1);
 color:white;
}

.login-information input[type="submit"]{
    width:75%;
    margin-top:0;
}


.create-password .progress-bar{
    width:60%;
  }
  .create-password .input-group svg{
    text-align:center;
    width:10%;
    stroke-opacity:1;
}
.create-password .input-group:focus-within .email-icon{
    color:hsla(205, 90%, 48%, 1);
    opacity:0.9;
}

.create-password .input-group:focus-within svg{
    opacity:1;
}
.create-password .back-next-btn-signup .back-arrow:hover{
    background-color:hsla(228, 65%, 12%, 1);
    color:white;

}

.create-password .username-group{
    position:relative;
}
.create-password .username-check-mark{
    position:absolute;
    color:green;
    background:transparent;
    right:0;
    bottom:0;
    display:none;
}

.create-password .input-group:focus-within .email-icon{
    color:hsla(205, 90%, 48%, 1);
    opacity:0.9;
}

  .create-password .back-next-btn-signup .back-arrow{
    width:15%;
    background-color:hsla(227, 63%, 18%, 0.05);
    color:black;
    box-shadow: 0.5px 1px 3px rgba(0, 0, 0, 0.6);
    border-radius:12px;
    padding:1em;
    margin-top:0;
    transition:1s;
    text-align:center;
    font-size:16px;
    cursor:pointer;

}
.create-password .back-next-btn-signup .back-arrow:hover{
 background-color:hsla(228, 65%, 12%, 1);
 color:white;
}

.create-password input[type="submit"]{
    width:75%;
    margin-top:0;
}
.create-password .passkey-link{
    color:hsla(205, 90%, 48%, 1);
    font-weight:600;
    padding:0.5em;

}
.create-password .passkey-group{
    opacity:0.4;
}


.create-password .input-group:focus-within .fa-eye{
    color:hsla(205, 90%, 48%, 1);

}
.customize-profile .customize-profile-upper{
    display:flex;
    justify-content:space-between;
    align-items:center;
}
.customize-profile .display-name, .choose-profession{
    display:flex;
    flex-direction:column;
    margin-top:0.5em;

}
.customize-profile .display-name input{
    outline:none;
    border:none;
    background-color:hsla(227, 63%, 18%, 0.05);
padding:0.5rem;
border-radius:7px;
}
.customize-profile .display-name{
    width:60%;
}
.customize-profile .display-name input:focus{
    border:1.5px solid hsla(205, 90%, 48%);

}
.customize-profile .customize-profile-upper .upload-image-container{
display:flex;
flex-direction:column;
justify-content:center;
align-items:center;
}
.customize-profile .customize-profile-upper .upload-image-container span{
font-size:xx-small;
margin-top:0.5em;
}
.customize-profile .upload-image-container{
    border-radius:50%;
    background-color:hsla(227, 63%, 18%, 0.05);
    text-align:center;
    width:6em;
    height:6em;
}
.customize-profile .choose-profession input{
    width:100%;
    outline:none;
    border:none;
    background-color:hsla(227, 63%, 18%, 0.05);
    padding:0.5em 1.3em;
    border-radius:10px;
}
.customize-profile .choose-profession input:focus{
    border:1.5px solid hsla(205, 90%, 48%);

}

.customize-profile .choose-profession{
    margin:1em 0;
}
.customize-profile .progress-bar{
    width:80%;
}

.create-account .progress-bar{
    width:100%;
}
.create-account .profile-image{
    width:7em;
    height:7em;
    border-radius:50%;
    overflow:hidden;
    display:flex;
    justify-content:center;
    align-items:center;
    margin:0 auto;
    border:4px solid hsla(227, 63%, 18%, 0.3);
}
.create-account .profile-image img{
    margin-top:0;
    width: 100%;
    height: 100%;
    object-fit: cover; 
    display:block;
}
.create-account .checkbox-terms, .checkbox-privacy-policy{
    display:flex;
    justify-content:center;
    align-items:center;
    width:100%;
}
.create-account label{
    width:80%;
}
.create-account .checkbox-terms input,.create-account .checkbox-privacy-policy input{
    width:10%;
}

.checkbox-confirm-group input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.checkbox-confirm-group label {
    position: relative;
    padding-left: 35px;
    font-size: 16px;
    cursor: pointer;
}

.checkbox-confirm-group label:before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 17px;
    height: 17px;
    border: 1px solid #ccc;
    border-radius:5px;
    background-color: #fff;
}

.checkbox-confirm-group input[type="checkbox"]:checked + label:before {
    background-color:#111D4A;
    text-align:center;
    content: '\2713'; 
    font-size:0.8em;
    font-weight:700;
    margin-top:8px;

}
.checkbox-confirm-group:first-child input[type="checkbox"]:checked + label:before{
    background-color:#111D4A;
    text-align:center;
    content: '\2713'; 
    font-size:0.8em;
    font-weight:700;
    margin-top:15px;
}
.checkbox-confirm-group label:hover:before {
    border-color: #999;


}

.checkbox-confirm-group input[type="checkbox"]:checked + label:before {
    transition: transform 0.5s ease-in-out; 
    position: absolute;
    left: 0;
    top: 0;
    transform: translateY(-50%);
}

.checkbox-confirm-group input[type="checkbox"]:checked + label:before {
    animation: growAndShrinkConfirm 0.7s ease-in-out forwards; 
}

@keyframes growAndShrinkConfirm {
    0% {
        transform: scale(1.1); 
    }
    50% {
        transform: scale(1.3);
        color:white;
    }
    100% {
        transform: scale(1);
        color: white;
        border-color: hsla(205, 90%, 48%, 1); 
    }
}
.checkbox-confirm-group{
    margin-top:0.5em;
}

.create-account .create-account-submit{
    margin-top:2em;
}
.create-account .checkbox-confirm-group a{
    text-decoration:underline;
    text-decoration-color:black; 
    color:hsla(205, 90%, 48%, 1); 
    font-weight:600;

}
.create-account .checkbox-confirm-group a:hover{
    text-decoration-color:hsla(205, 90%, 48%, 1); 
    color:hsla(205, 90%, 48%, 1); 
}

.country-cities select{
    width:100%;
    padding-top:1em;
    outline:none;
    border:none;
    background-color:hsla(227, 63%, 18%, 0.05);
    border-radius:7px;
    padding:0.6em 0.5em;
    
  
}
  .country-cities select:focus{
    border:1.5px solid hsla(205, 90%, 48%);

  }
  

  .error-messages {
    position: fixed;
    bottom: 0.5em;
    left:2em;
    text-align: center; 
    z-index: 1000; 
}

.error-message {
    opacity: 1;
    background-color: rgba(255, 0, 0, 0.8);
    width:fit-content; 
    color: white;
    padding: 10px;
    margin: 5px;
    border-radius: 5px;
    animation: fadeInOut 5s forwards; 
}

@keyframes fadeInOut {
    0% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}