* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

body {
    min-height: 100vh;
    display: flex;
    background-color: #fff;
}

.container {
    display: flex;
    width: 100%;
    min-height: 100vh;
}

.left-side {
    display: none;
    position: relative;
    overflow: hidden;
}

.carousel {
    height: 100%;
    width: 100%;
    position: relative;
}

.carousel-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 4rem;
    background-color: #e8f5f1;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-content {
    max-width: 500px;
}

.carousel-content h1 {
    font-size: 2.5rem;
    color: #2d3748;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.carousel-image {
    text-align: center;
    margin: 2rem 0;
}

.carousel-image img {
    max-width: 100%;
    height: auto;
}

.carousel-indicators {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
}

.indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #cbd5e0;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.indicator.active {
    background-color: #198B53;
}

.right-side {
    flex: 1;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-form {
    width: 100%;
    max-width: 400px;
}

.login-form h2 {
    font-size: 1.5rem;
    color: #000;
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #4a5568;
}

.form-group input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 0.5rem;
    background-color: #f7fafc;
    font-size: 1rem;
}

.form-group select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 0.5rem;
    background-color: #f7fafc;
    font-size: 1rem;
}

.forgot-password {
    text-align: right;
    margin-bottom: 1.5rem;
}

.forgot-password a {
    color: #198B53;
    text-decoration: none;
    font-size: 0.875rem;
}

.login-button {
    width: 100%;
    padding: 0.75rem;
    background-color: #198B53;
    color: white;
    border: none;
    border-radius: 0.5rem;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.login-button:disabled {
    background-color: #cbd5e0;
    cursor: not-allowed;
}

.login-button:disabled:hover {
    background-color: #cbd5e0;
}

.login-button:hover {
    background-color: #16a34a;
}

.create-account {
    text-align: center;
    margin: 1.5rem 0;
    color: #000;
    font-size: 0.875rem;
}

.create-account a {
    color: #198B53;
    text-decoration: none;
    font-weight: 500;
}

.divider {
    text-align: center;
    margin: 1.5rem 0;
    position: relative;
}

.divider::before,
.divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 45%;
    height: 1px;
    background-color: #e2e8f0;
}

.divider::before {
    left: 0;
}

.divider::after {
    right: 0;
}

.social-login {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.social-button {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #e2e8f0;
    border-radius: 0.5rem;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.875rem;
    color: #2d3748;
    transition: background-color 0.3s ease;
}

.color-text{
    color: #198B53;
    text-decoration: none;
    font-size: 0.975rem;
}

.terms-conditions{
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}
.terms-conditions label {
    margin-left: 5px;
}

.social-button:hover {
    background-color: #f7fafc;
}

@media (min-width: 768px) {
    .left-side {
        display: block;
        width: 50%;
    }
}


.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(151, 150, 150, 0.5);
    backdrop-filter: blur(5px);
    z-index: 1;
}

.auth-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 20px;
    width: 90%;
    max-width: 500px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.auth-card h2 {
    margin-bottom: 20px;
    color: #198B53;
}

.auth-card p {
    color: #000;
    line-height: 1.5;
    margin: 10px;
}

.auth-card li {
    color:  #4a5568;
    line-height: 1.5;
    margin-left: 5%;
}

.auth-card button{
    width: 100%;
    padding: 0.75rem;
    background-color: #198B53;
    color: white;
    border: none;
    border-radius: 0.5rem;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-bottom: .9rem;
}

.auth-card form label,
.auth-card form input {
    display: inline-block;
    vertical-align: middle;
    margin-bottom: .9rem;
}

.auth-card form label {
    margin-right: 1rem;
    color: #4a5568;
    white-space: nowrap;
}

.auth-card form input {
    width: auto;
    padding: 0.75rem 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 0.5rem;
    background-color: #f7fafc;
    font-size: 1rem;
}

.auth-card a {
    display: block;
    margin-top: .9rem;
    width: 50%;
    padding: 0.75rem;
    background-color: #198B53;
    color: white;
    text-align: center;
    text-decoration: none;
    border-radius: 0.5rem;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-bottom: 0.9rem;
}

.auth-card .close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 30px;
    height: 30px;
    background-color: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.3s ease;
    font-size: 30px;
    color: #666;
    font-weight: bold;
    padding: 0;
    margin: 0;
    z-index: 3;
}

.auth-card .close-btn:hover {
    background-color: rgba(0, 0, 0, 0.1);
    color: #333;
}