.navbar {
    background-color: white;
    border-bottom: 1px solid var(--grey-color);
    width: 100%;
}

.LoginFeld {
    background-color: white;
    border: 1px solid var(--grey-color);
    border-radius: 5px;
    margin: 50px auto;
    width: 500px;
    height: 80%;
    box-sizing: border-box;
    padding-top: 4px;
}

.login-nav {
    color: black;
}

.Login-title,
.Register-title {
    margin: 12px auto;
    text-align: center;
    width: 66%;
    font-family: "Asap Condensed", sans-serif;
    font-weight: 600;
}

.Password-title {
    margin: 12px auto;
    text-align: center;
    width: 90%;
}

.messages {
    border: 1px solid var(--primary-color);
    border-radius: 5px;
    background-color: var(--primary-orange);
    font-size: 15px;
    margin-bottom: 2px;
    margin-top: 10px;
    margin: 0 auto;
    padding: 4px;
    width: 85%;
}

.infoMessage {
    list-style: none;
    text-align: center;
}

.errorMessage {
    color: red;
    font-size: 12px;
    display: block;
    margin: 5px auto;
    width: 85%;
    text-align: start;
}

.Login-input {
    text-align: center;
    margin: 0 auto;
}

.go-to-Login-input {
    height: 80px;
    text-align: center;
}

.login-i::placeholder {
    color: rgb(52, 52, 52);
    padding-left: 3px;
}

.login-i {
    background-color: rgb(243, 241, 241);
    border: none;
    border-radius: 5px;
    height: 45px;
    margin-top: 12px;
    padding-left: 8px;
    width: 85%;
    box-sizing: border-box;
}

.showPassword {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    margin: 0 auto;
    margin-top: 10px;
    height: 25px;
    width: 85%;
}

.left-side {
    display: flex;
    align-items: center;
}

.left-side input[type="checkbox"] {
    margin-bottom: 15px; 
    vertical-align: middle;
    /* Adjust the margin-right value as needed */
    margin-right: 5px;
}

.right-side {
    justify-self: end;
}

.p-password {
    font-size: 13px; 
    text-align: left;
}

.forgot-password {
    color: black;
    font-size: 13px; 
    margin-top: 0;
    text-align: right;
}

.forgot-password:hover {
    color: #000;
}

.showPasswordRegister {
    margin: 0 auto;
    margin-top: 10px; 
    width: 85%;
    text-align: start;
}

.login-btn {
    background-color: var(--primary-color);
    border: none;
    border-radius: 5px;
    color: black;
    font-size: 18px;
    font-weight: 600;
    margin-top: 16px;
    padding: 8px;
    width: 85%;
    font-family: "Asap Condensed", sans-serif;
}

.login-btn:hover {
    background-color: #ffac12;
}

.go-to-login-btn {
    background-color: var(--primary-color);
    border-radius: 5px;
    color: black;
    display: inline-block;
    font-size: 18px;
    margin-top: 20px;
    padding: 8px;
    text-decoration: none;
    width: 90%;
}

.go-to-login-btn:hover {
    color: black;
}

.login-term {
    font-size: 14px;
    margin: 20px auto;
    width: 60%;
}

.password-term {
    font-size: 14px;
    margin: 10px auto;
    width: 85%;
}

.login-footer {
    font-size: 13px;
    margin: 8px auto;
    text-align: center;
}

.login-footer-text, 
.register-footer-text {
    padding: 2px;
}

.login-footer-link, 
.register-footer-link {
    color: #1654b0;
    font-weight: 500; 
    text-decoration: none;
}

.register-btn {
    background-color: var(--primary-color);
    border: none;
    border-radius: 5px;
    color: black;
    font-size: 18px;
    font-weight: 600;
    margin-top: 16px;
    padding: 8px;
    width: 85%;
    font-family: "Asap Condensed", sans-serif;
}

.register-btn:hover {
    background-color: #ffac12;
    transition: 2s ease;
}

.google-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white; /* Adjust background color as needed */
    border: 2px solid black;
    border-radius: 5px; /* Remove border if necessary */
    padding: 8px;
    margin: 20px auto;
    width: 85%; 
    font-family: "Asap Condensed", sans-serif;
  }
  
  .google-icon-container {
    display: flex;
    align-items: center;
  }

.bi-google {
    margin-right: 8px;
}
  
  .google-btn-font {
    color: #000;
    font-size: 18px;
    font-weight: 500;
    margin: 0; /* Reset margin to remove any default spacing */
    text-align: center;
    text-decoration: none;
    flex: 1;
  }

  .google-btn-font:hover {
    color:#000;
  }

.or-separator {
    display: flex;
    align-items: center;
    margin: 10px 0;
}
  
.or-separator::before,
.or-separator::after {
    content: '';
    flex-grow: 1;
    height: 1px;
    background-color: var(--grey-color);
}
  
.or-text {
    margin: 0 10px;
    color: #999;
}

/* media - queries */
@media (max-width: 600px) {
    .LoginFeld {
        border: none;
        margin-top: 0px;
        padding: 20px;
        width: 100%;
    }

    .login-i, .login-btn, .register-btn, .google-btn, .showPassword, .showPasswordRegister {
        height: 60px;
        width: 100%;
    }
}