body {
    font-family: 'Arial', sans-serif;
    background-color: #055339;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.login-container {
    display: flex;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    gap: 50px;
}

.form-section {
    max-width: 350px;
}

.form-section h1 {
    font-size: 24px;
    margin-bottom: 20px;
    text-align: center;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    font-size: 14px;
    color: #333;
    display: block;
    margin-bottom: 5px;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="password"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #e5e7eb;
    border-radius: 5px;
    font-size: 14px;
    box-sizing: border-box;
}

.form-group input[type="checkbox"] {
    margin-right: 10px;
}

.forgot-password {
    text-align: right;
    font-size: 12px;
    margin-bottom: 20px;
}

a{
    text-decoration: none;
    color: #0b3c5a;
    font-weight: bold;
    transition: color 0.3 ease;
}

a:hover{
    color: #23a7f9;
}

.login-btn {
    width: 100%;
    background-color: #055339;
    color: white;
    padding: 10px;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.login-btn:hover {
    background-color: #c5a462;
}

.register-link {
    text-align: center;
    margin-top: 10px;
    font-size: 14px;
}


.illustration-section {
    display: flex;
    justify-content: center;
    align-items: center;
}

.illustration-section img {
    width: 300px;
    height: auto;
}

.back{
    display: flex;
    color: #055339;
    justify-content: center;
    align-items: center;
    transition: color 0.3 ease, background-image 0.3 ease;
    text-decoration: underline;
    padding-right: 20px;
}

.back:hover{
    color: #c5a462;
}

.back:hover .lets-icons--sign-out-squre-duotone{
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cg fill='none'%3E%3Cpath fill='%23c5a462' fill-opacity='0.25' d='m10.368 6.544l6.316-2.105A1 1 0 0 1 18 5.387v13.226a1 1 0 0 1-1.316.948l-6.317-2.105A2 2 0 0 1 9 15.559V8.442a2 2 0 0 1 1.367-1.898'/%3E%3Cpath stroke='%23c5a462' stroke-linecap='round' d='M6.5 9.5L4 12m0 0l2.5 2.5M4 12h10'/%3E%3C/g%3E%3C/svg%3E");
}
