
        

body {
    

    /* font-family: 'Roboto', sans-serif; */
    background-color: #f8f9fa;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    height: 100vh;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #034e31;
    padding: 10px 20px;
    color: white;
}


.logo {
  display: block;
  font-size: 1.5rem;
  font-weight: bold;
  text-decoration: none;
  color: inherit; /* keeps same color as surrounding text */
}


/* .navbar .logo {
    font-size: 24px;
    font-weight: bold;
} */

.navbar .menu {
    display: flex;
    gap: 20px;
}

.navbar .menu a {
    color: white;
    text-decoration: none;
    font-weight: 500;
}

.navbar .social-icons {
    display: flex;
    gap: 10px;
}

.navbar .social-icons a {
    color: white;
    font-size: 18px;
}

.content-wrapper {
    display: flex;
    flex: 1;
    /* align-items: center; */
    justify-content: center;
    /* padding-top: 20px; */
    padding-bottom: 20px;
}
.signin-wrap{
    /* flex: 2; */
    /* width: 50%; */
}
.left-section-signup{
    flex: 1;
    padding: 40px;
    align-items: center;
}
.left-section {
    /* flex: 2; */
    
    padding: 20px;
    text-align: center;
    height: 100%;
}

.left-section .maintext {
    color: white;
    /* font-weight: 200; */
}

.left-section img {
    max-width: 100%;
    height: auto;
    margin-bottom: 0px;
    
}

.left-section h1 {
    font-size: 36px;
    margin-bottom: 10px;
    color: #44db08;
}

.left-section p {
    font-size: 18px;
    color: #555;
}

.right-section {
    /* flex: 1; */
    max-width: 500px;
    width: 100%;
    /* height: 100%; */
    align-items: center;
    display: inline-flex;
    justify-content: center;
    padding: 20px!important;
    /* background-color: #dde2e7; */


}

.login-card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    width: 100%;
}
.login-card h3 {
    text-align: center;
    margin-bottom: 20px;
    color: #333;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
}

.form-group input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.btn-primary {
    width: 100%;
    padding: 10px;
    background-color: #007bff;
    border: none;
    color: white;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: #0056b3;
}

.footer {
    margin-top: 20px;
    text-align: center;
    color: #666;
}

.footer a {
    color: #007bff;
    text-decoration: none;
}

@media (max-width: 768px) {
    .content-wrapper {
        flex-direction: column;
    }

    .left-section {
        margin-bottom: 20px;
    }
}

.content-wrapper {
position: relative;
}

.content-wrapper::before {
content: "";
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-image: url('/static/images/flowers.png');
background-size: cover;
background-position: center;
filter: grayscale(100%);
z-index: 1;
opacity: 0.1;
}

.content-wrapper::after {
content: "";
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 255, 0, 0.1); /* Adjust the green intensity */
z-index: 2;
}

.content-wrapper * {
position: relative;
z-index: 8;
}

.text-wrap{
z-index: 3;

background-color: rgba(54, 60, 54, 0.8); /* Adjust the green intensity */

}

.toggle-password {
  position: absolute;
  right: 10px;
  top: 36px;
  cursor: pointer;
  color: #777;
}

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

input,
select,
textarea {
  font-family: inherit !important;
}