
body {
    margin: 0;
    font-family: 'Open Sans', sans-serif;
    background-color: #6D9540;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    display: flex;
    align-items: stretch;
    max-width: 980px;
    width: 100%;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.3);
    border-radius: 20px;
    overflow: hidden;
}

.left-section {
    flex: 1;
    background: url('bg.png') no-repeat center center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.left-section h2 {
    font-weight: 500;
    color: #fff;
    background: rgb(147 145 145 / 28%);
    backdrop-filter: blur(10px);
    padding: 10px;
    width: 100%;
    height: 120px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.right-section {
    flex: 1;
    background-color: #ffffff;
    padding: 30px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-container {
    max-width: 400px;
}

form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

input[type="text"],
input[type="password"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #DBDBDB;
    border-radius: 50px;
    color: #333;
}

input::placeholder {
    color: #DBDBDB;
}

.submit-button {
    align-self: center;
    width: fit-content;
    display: flex;
    background-color: #fff;
    color: #6D9540;
    border: 1px solid #6D9540;
    padding: 10px 35px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 500;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.submit-button:hover {
    background-color: #6D9540;
    color: #ffffff;
}

.alternative-login {
    text-align: center;
    display: flex;
    flex-direction: column;
}

.alternative-login p {
    margin: 5px 0;
}

.public-login-button {
    background-color: #ffffff;
    color: #727272;
    border: 1px solid #DBDBDB;
    padding: 5px 30px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 500;
    transition: box-shadow 0.3s ease;
    display: flex!important;
    align-items: center;
    align-self: center;
    gap: 10px;
}

.public-login-button:hover {
    box-shadow: -5px 5px 10px rgba(109, 149, 64, 0.5);
}

p {
    font-size: 16px;
}

@media (max-width: 768px) { 
    body {
        padding-top: 5rem;
    }
    .container {
        flex-direction: column;
    }
}
