body {
    background-color: #d4f1f4;
    font-family: "Arial", sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.login-container {
    background-color: #1f2b2b;
    border-radius: 30px;
    width: 100%;
    max-width: 900px;
    display: flex;
    flex-wrap: wrap;
    overflow: hidden;
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.25);
}

.left-panel,
.right-panel {
    padding: 40px;
    flex: 1;
}

.left-panel {
    background-color: #c1c9cc;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 30px 0 0 30px;
}

.right-panel {
    background-color: #3bb78f;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 0 30px 30px 0;
}

@media (max-width: 768px) {
    .login-container {
        flex-direction: column;
        border-radius: 30px;
    }

    .left-panel,
    .right-panel {
        border-radius: 30px;
        padding: 20px;
    }

    .right-panel {
        text-align: center;
    }
}

@media (max-width: 600px) {
    .right-panel {
        display: none;
    }
}

h5 {
    color: #3bb78f;
    font-weight: 500;
    margin-bottom: 20px;
}

.form-control {
    background-color: white;
    border: none;
    border-radius: 10px;
    padding: 15px;
}

.form-control::placeholder {
    color: #aaa;
}

.form-button {
    background-color: #3bb78f;
    border: none;
    border-radius: 10px;
    padding: 10px;
    font-size: 1.2rem;
    color: #fff;
    width: 100%;
}

.form-button:hover {
    background-color: #0189a1;
}

.toggle-password {
    cursor: pointer;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #aaa;
}

.right-panel img {
    border-radius: 30px;
    object-fit: cover;
    max-height: 100%;
    width: 100%;
}
