/* Glassmorphism Login Form - Complete & Self-Contained */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}



html,
body {
    height: 100%;
    margin: 0;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    background-size: cover;
    position: relative;
    min-height: 100vh;

    align-items: flex-start;

    padding-top: 130px;
    padding-bottom: 40px;
}


div.main {
    height: 1250px;
    position: absolute;
}



/* body::before {
    content: "";
    position: relative;         
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('/sign_in_bck.jpg') no-repeat center center;
    background-size: cover;
    opacity: 0.5;            
    z-index: -1;              
} */


body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    background: url('/sign_in_bck.jpg') no-repeat center center;
    background-size: cover;

    opacity: 0.5;
    z-index: -1;
}

div.logo {
    margin-top: -90px;
    margin-left: -200px;
    position: absolute;
}

.armenopedia-logo {
    height: 76px;
    width: 74px;
}

/* .signin-div {
    
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);  
    margin-top: 200px;
    width: 900px;
    height: 700px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0px 8px 32px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    position: absolute;

} */

.signin-div {
    position: relative;
    /* NOT absolute */
    width: 900px;
    height: 1100px;

    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0px 8px 32px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    margin-bottom: 6000px;
}

.title {
    font-family: 'Inter';
    text-align: center;
    color: #272D6E;
    margin-top: 60px;
    font-size: 32px;
}

p.signin {
    text-align: center;
    color: #475569;
    font-size: 18px;
}


/*  */
/* General styles for all input fields */
div.input-container {
    display: flex;
    flex-direction: column;
    gap: 0px;
    /* Optional: adds space between sections */
    margin-top: 45px;
}

div.input-container>div {
    display: flex;
    flex-direction: column;
    margin-top: 20px;
    /* Adjusts spacing between sections */
}

div.input-container p {
    color: #272D6E;
    font-size: 16px;
    margin-left: 170px;
    margin-bottom: 8px;
    font-weight: 600;
}

div.input-container input {
    width: 564px;
    max-width: 90%;
    height: 44px;
    background: #F6F9FB;
    border: 1px solid #8E959C;
    color: #706F6F;
    border-radius: 12px;
    padding-left: 12px;
    margin: 0 auto;
    display: block;
}

/*  */

.password-svg {
    margin-left: 700px;
    margin-top: 40px;
    position: absolute;
}

.password-open-svg {
    margin-left: 700px;
    margin-top: 40px;
    position: absolute;
}

.password-open-svg {
    display: none;
}

#agree {
    margin-left: 170px;

    appearance: none;
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    border: 2px solid #475569;
    border-radius: 4px;
    background-color: #475569;
    cursor: pointer;
    position: relative;
    vertical-align: middle;
}

#agree:checked::after {
    content: '';
    position: absolute;
    top: 1px;
    left: 5px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}


.remember-label {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #475569;
    cursor: pointer;
    margin-top: 25px;


}

.remember-label span {
    margin-left: 6px;
    font-size: 14px;
}

.remember-label a {
    margin-left: 5px;
    color: #475569;
    text-decoration: underline;
}

.remember-label a:visited {

    color: #475569;

}

.sign-in {
    width: 564px;
    height: 54px;
    margin-top: 30px;
    margin-left: 170px;
    background: #272D6E;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25), inset 0px 4px 4px rgba(0, 0, 0, 0.25);
    border-radius: 12px;
    color: white;
    font-weight: 700;
    font-size: 15.5px;
}


.sign-in:hover {
    width: 564px;
    height: 54px;
    margin-top: 30px;
    margin-left: 170px;
    background: #1f2357;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25), inset 0px 4px 4px rgba(0, 0, 0, 0.25);
    border-radius: 12px;
    color: white;
    font-weight: 700;
    font-size: 15.5px;
}

p.continue-txt {
    font-size: 14px;
    color: #475569;
    margin-top: 35px;
    text-align: center;
}

.continue-with-buttons {
    margin-top: 20px;
    display: flex;
    /* make it flex */
    justify-content: center;
    /* center buttons horizontally */
    gap: 12px;
}

.continue-with-google {
    width: 180px;
    height: 48px;
    color: #1422C0;
    font-weight: 700;
    font-size: 16px;
    background: #FFFFFF;
    border: 1px solid #BCBCBC;
    backdrop-filter: blur(5px);
    border-radius: 12px;
    padding-left: 10px;
}

svg.google-svg {
    position: absolute;
    margin-left: -30px;
}


.continue-with-facebook {
    width: 180px;
    height: 48px;
    color: #1422C0;
    font-weight: 700;
    font-size: 16px;
    background: #FFFFFF;
    border: 1px solid #BCBCBC;
    backdrop-filter: blur(5px);
    border-radius: 12px;
    padding-left: 10px;
}

svg.facebook-svg {
    position: absolute;
    margin-left: -20px;
}


.continue-with-linkedin {
    width: 180px;
    height: 48px;
    color: #1422C0;
    font-weight: 700;
    font-size: 16px;
    background: #FFFFFF;
    border: 1px solid #BCBCBC;
    backdrop-filter: blur(5px);
    border-radius: 12px;
    padding-left: 10px;
}

svg.linkedin-svg {
    position: absolute;
    margin-left: -20px;
}


label.sign-up {

    display: block;
    text-align: center;
    margin-top: 20px;
    color: #475569;
}

a.signup {
    color: #06B6D4;
    font-weight: 500;
    text-decoration: none;
}

a.signup:visited {
    color: #06B6D4;
    font-weight: 500;
}


div.profession-and-activity-input {
    display: flex;
    margin-left: 168px;
    margin-top: 20px;


}



div.input-container input.profession {
    width: 253px;
    height: 44px;
    margin-left: 168px;


}

div.activity-div {
    margin-left: 311px;
    margin-top: -96px;
}

select#activity {
    width: 253px;
    height: 44px;
    background: #F6F9FB;
    border: 1px solid #8E959C;
    border-radius: 12px;
    padding-left: 12px;

    display: block;
    color: #706F6F;

}

input#professionid {

    width: 253px;
    height: 44px;
    background: #F6F9FB;
    border: 1px solid #8E959C;
    border-radius: 12px;
    padding-left: 12px;
    margin: 0 auto;
    display: block;
    color: #706F6F;

}


div.field1 {
    color: #272D6E;
    font-size: 16px;
    font-weight: 600;
}

div.field1 p {
    margin-left: 3px;
    margin-bottom: 8px;
}

div.field2 p {
    margin-left: 3px;
    margin-bottom: 8px;

}


div.field2 {
    color: #272D6E;
    font-size: 16px;
    font-weight: 600;
    margin-left: 57px;

}

.or-text {
    color: #272D6E;
    font-weight: 800;
    font-size: 18px;
    margin-left: 273px;
    position: absolute;

}

div#language-error {
    color: red;
    font-size: 13px;
    margin-top: 3px;
    min-height: 16px;
    margin-left: 170px;
}

div.socila-media {
    margin-top: 17px;
}

#socialmedia {


    width: 564px;
    max-width: 90%;
    height: 44px;
    background: #F6F9FB;
    border: 1px solid #8E959C;
    border-radius: 12px;
    padding-left: 12px;
    margin: 0 auto;
    display: block;

}



p.social-media {
    color: #272D6E;
    font-size: 16px;
    margin-left: 170px;
    margin-bottom: 8px;
    font-weight: 600;
}




.error-message {
    color: red;
    font-size: 13px;
    margin-top: 4px;
    min-height: 16px;
    margin-left: 170px;
}

.red-border {
    border: 1px solid red !important;
}

#profession-error {

    color: red;
    font-size: 13px;
    margin-top: 3px;
    min-height: 16px;
    margin-left: 170px;
}




div.input-container select {
    width: 564px;
    max-width: 90%;
    height: 44px;
    background: #F6F9FB;
    border: 1px solid #8E959C;
    color: #706F6F;
    border-radius: 12px;
    padding-left: 12px;
    margin: 0 auto;
    display: block;
}



#languageid {
    width: 100%;
    min-width: 250px;
    height: 120px;
}



.multi-select {
    position: relative;
    width: 100%;
}

/* .select-box {
    width: 564px;
    max-width: 90%;
    height: 44px;
    background: #F6F9FB;
    border: 1px solid #8E959C;
    border-radius: 12px;
    padding-left: 12px;
    margin: 0 auto;
    display: block;
} */

.select-box {
    width: 564px;
    max-width: 90%;
    height: 44px;
    background: #F6F9FB;
    border: 1px solid #8E959C;
    border-radius: 12px;
    padding: 6px 12px;
    margin: 0 auto;

    display: flex;
    align-items: center;
    gap: 6px;

    overflow-x: auto;   /* horizontal scroll */
    overflow-y: hidden;
    white-space: nowrap;
}

/* .placeholder {
    color: #706F6F;
    position: absolute;
    font-size: 16px;
} */

.placeholder {
    color: #706F6F;
     position: absolute;
    font-size: 16px;
    /* margin-top:-20px */
}

.tag {
    /* background: #1422C0;
  width: 20px;
  color: white;
  padding: 3px 8px;
  border-radius: 6px;
  font-size: 17px; */
    display: inline-block;
    background: #1f2357;
    color: white;
    padding: 3px 8px;
    border-radius: 6px;
    font-size: 17px;
    /* margin-top: 5px;
    margin-right: 5px; */
}

.dropdown {
    position: absolute;
    width: 566px;
    background: #f6f9fb;
    border: 1px solid #9199a0;
    /* border-radius: 10px; */
    margin-top: 70px;
    max-height: 200px;
    overflow-y: auto;
    display: none;
    padding-left: 12px;
    margin-left: 167px;

}

.dropdown label {
    display: block;
    padding: 5px;
    cursor: pointer;
    margin-top: 15px;
}


#languageDropdown input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: #c1e0f2;
    margin-right: 8px;
    position: absolute;
    margin-left: 480px;

}





#closeDropdown {
    float: right;
    cursor: pointer;
    color: black;
    margin-bottom: 10px;
    margin-left: 515px;
    position: fixed;
    font-size: 24px;

}

#closeDropdown:hover {
    color: red;
}




/* .social-input {
    
     align-items: center;
    margin-top: 10px; 
} */

.social-input input {
    width: 564px;
    max-width: 90%;
    height: 44px;
    background: #F6F9FB;
    border: 1px solid #8E959C;
    border-radius: 12px;
    padding-left: 12px;
    margin: 0 auto;
    display: block;
    margin-left: 167px;
    margin-top: 3px;
}

.remove-btn {
    margin-left: 708px;
    margin-top: -32px;
    cursor: pointer;
    color: #706f6f;
    font-weight: bold;
    font-size: 20px;
    position: absolute;
}

#addSocialLink {
    margin-top: 10px;
    padding: 6px 12px;
    cursor: pointer;
    background-color: #272D6E;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25), inset 0px 4px 4px rgba(0, 0, 0, 0.25);
    color: white;
    border: none;
    border-radius: 12px;
    margin-left: 167px;
}

#addSocialLink:hover {
    background-color: #1f2357;
}


.dynamic-select{

     width: 253px;
    height: 44px;
    background: #F6F9FB;
    border: 1px solid #8E959C;
    border-radius: 12px;
    padding-left: 12px;

    display: block;
    color: #706F6F;
}












.select2-container--default .select2-selection--single{
    width: 564px;
    /* max-width: 90%; */
    height: 44px;
    background: #F6F9FB;
    border: 1px solid #8E959C;
    border-radius: 12px;
    padding: 6px 12px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 6px;
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    margin-left:167px ;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
    margin-left: 160px;
    margin-top: 4px;
}

.select2-container--open .select2-dropdown--below{
    margin-left: 167px;
    background: #f6f9fb;
    border: 1px solid #9199a0;
}

.select2-container--default .select2-search--dropdown .select2-search__field{
     background: white;
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable{
    background-color: blue;
}


div.input-container input#languageSearch {
    height: 30px;
    background: white;
    border-radius: 1px;
    border: 1px solid  #9199a0;
    margin-top: 5px;
    width: 100%;        
    max-width: 600px;   
    box-sizing: border-box;  
    margin-left: -5px;
}


.select2-container--default.select2-container--open.select2-container--below .select2-selection--single, .select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple{
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px
}


div.error-msg{

    color: red;
    font-size: 13px;
    margin-top: 6px;
    min-height: 16px;
    margin-left: 178px;
}
