@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");

body {
    margin: 0px;
    padding: 0px;
    font-family: "Roboto", serif;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;

}

.logo img {
    width: 200px;
}

.signin-section {
    padding: 10px 0px;
    height: 100vh;
    display: flex;
    padding-top: 80px;
    flex-direction: column;
    overflow-y: auto;
}

.signup-section {
   padding: 10px 0px;
   height: 100vh;
   overflow-y: auto;

}

.login-sign-up-content-title {
        color: #353535;
    text-align: center;
    font-size: 30px;
    font-family: "Roboto", serif;
    padding:10px 0px 10px;
    font-weight: 500;

}

.login-sign-up-content-title span {
color: #fc5b95;
}

.form-sec {
    width: 100%;
}


.form-sec .form-group {
    margin-bottom: 20px;
}

.form-sec .form-control {
       display: block;
    width: 100%;
    padding: 18px 20px;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    background-color: #f7f7f7;
    background-clip: padding-box;
    border: 1px solid #f7f7f7;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 0px;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    font-weight: 600;
}

.forgot-password-content {
        color: #fc5b95;
    font-size: 18px;
    display: flex;
    justify-content: end;
    font-weight: 500;
    text-decoration: underline;
}

.log-button-container {
    margin-top: 30px;
}

.log-button {
    width: 100%;
    border: none;
    border-radius: 0px;
    background: #7D25EC;
    height: 46px;
    line-height: 46px;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    font-family: "Roboto", serif;
}

.other-sign-in-text {
    color: #353535;
    text-align: left;
    font-size: 18px;
    font-family: "Roboto", serif;
    font-weight: 500;
    padding: 20px 0px;
    text-align: center;
}

.other-sign-button-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.other-sign-button {
    display: flex;
    justify-content: center;
    font-family: "Roboto", serif;
    gap: 10px;
    align-items: center;
    font-size: 16px;
    background: #eeeeee;
    padding: 12px 20px;
    width: 178px;
   
}


.signup-link-content p {
    color: #353535;
    font-size: 18px;
    font-weight: 500;
    text-decoration: none;
    font-family: "Roboto", serif;
    text-align: center;
    padding: 30px 0px;
}


.signup-link-content p a {
    font-family: "Roboto", serif;
    color: #7D25EC;
    text-decoration: underline;
}

/*------ Invisible Scroll ----------*/

::-webkit-scrollbar {
  -webkit-appearance: none;
}

::-webkit-scrollbar:vertical {
  width: 0px;
}

::-webkit-scrollbar:horizontal {
  height: 8px;
}

::-webkit-scrollbar-thumb {
  background-color: transparent;
  border-radius: 8px;
}

/*------ Language Toogle ----------*/
.language-toogle-sec {
    display: flex;
    justify-content: end;
    padding-top: 20px;
}

.lang-toggle{
  display: inline-flex;
  border-radius: 0px;
  overflow: hidden;
  box-shadow: 0 1px 0 rgba(0,0,0,0.06);
  user-select: none;
  font-family: "Roboto", serif;
  font-weight: 700;
  font-size: 14px;
}

/* hide radios but keep accessible */
.lang-toggle input[type="radio"]{
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

/* label as button */
.lang-toggle .lang-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 56px;
  height: 26px;
  padding: 0 14px;
  cursor: pointer;
  background: #e9e9ea;
  color: #111;
  border-right: 1px solid rgba(0,0,0,0.06);
  box-sizing: border-box;
}

/* remove right border on last button */
.lang-toggle .lang-btn:last-of-type{ border-right: none; }

/* style active via :checked + label */
#lang-en:checked + label[for="lang-en"],
#lang-fr:checked + label[for="lang-fr"]{
  background: #ff79a7;
  color: #fff;
}

/* focus styles for keyboard users */
.lang-toggle input[type="radio"]:focus + label{
  outline: 3px solid rgba(0,123,255,0.18);
  outline-offset: 2px;
}

/* smaller / larger variations */
.lang-toggle.small .lang-btn{ min-width: 44px; height: 30px; font-size: 13px; }
.lang-toggle.large .lang-btn{ min-width: 68px; height: 42px; font-size: 15px; }



.header-top .language-toogle-sec {
    padding: 0px;
}

.header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0px 0px 20px;
}

.header-top-left-logo img {
width: 150px;
}

.header-top-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.signout-icon i {
    font-size: 22px;
    color: #b40000;
}

.header-section-user {
    font-size: 18px;
    font-weight: 600;
    padding: 10px 0px;
    display: flex;
    color: white;
    justify-content: end;


}

.header-bottom {
    background-color: #5e9de9;
    /* background: #a97ffb !important; */
    padding: 5px 10px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-bottom-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-bottom-left-company-logo img {
    width: 50px;
    border-radius: 50%;
}

.header-bottom-left-company-info h4 {
    color: white;
    font-size: 14px;
    margin: 0px;
}

.header-bottom-left-company-info p {
       color: #f5508a;
    font-size: 16px;
    margin: 0px;
    background-color: white;
    padding: 0px 10px 2px;
    width: fit-content;
    margin-top: 9px;
    font-weight: 600;
}

.header-bottom-right {
     display: flex;
    align-items: center;
    gap:20px;
}

.header-bottom-right-switch-icon i {
        font-size: 22px;
    color: white;
}

.header-bottom-right-menu-icon {
background: white;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-bottom-right-menu-icon i {
    color: #7D25EC;
    font-size: 18px;
}

.company-container {
    display: flex;
    align-items: center;
    padding: 16px 10px 16px;
    box-shadow: 0 0.5rem 1rem #00000026 !important;
    border-radius: 10px;
    margin-bottom: 14px;
}

.company-container-left {
    display: flex;
    align-items: center;
    width: 60%;
    gap: 10px;
}
.company-container-logo {
    border: 1px solid #3b74b9;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.company-name {
    width: 60%;
}

.switch-link-btn {
    color: #ffffff;
    font-size: 14px;
    width: 40%;
    background: #e93977;
    /* background: #a97ffb; */
    padding: 4px;
    border-radius: 4px;
}
