
 * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    display: flex; 
    height: 100vh;
    background-color: #f0f2f5; 
}

.left-section {
    display: flex;
    flex-direction: column;
    justify-content: flex-start; 
    align-items: center;
    background-color: white; 
    width: 50%; 
    padding: 40px; 
    padding-bottom: 20px; 
    text-align: center; 
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); 
    margin-top: 20px;
}

.logo {
    width: 150px; 
    margin-top: 90px;
    margin-bottom: 30px;
    box-shadow: 0 4px 8px rgba(52, 51, 51, 0.7), 0 -4px 8px rgba(52, 51, 51, 0.7), 4px 0 8px rgba(52, 51, 51, 0.7), -4px 0 8px rgba(52, 51, 51, 0.7);

}

.left-section h1 {
    color: #1877f2;
    margin-top: 47px;
    margin-bottom: 15px; 
    font-size: 50px;
    font-family: 'Times New Roman', Times, serif; 
}

.left-section .quote {
    font-size: 20px;
    color: #181818; 
    margin-top: 10px; 
    line-height: 1.5; 
    padding: 0 20px; 
}

.vertical-line {
    width: 2px; 
    background-color: #cecfd1; 
    height: 100%; 
    align-self: stretch; 
}

.container {
    background: #e7e4e4; 
    padding: 40px;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px;
    width: 400px; 
    margin: auto; 
    align-self: center; 
}

.container h2 {
    color: #1877f2; 
    font-size: 28px;
    margin-bottom: 20px;
    text-align: center; 
}

.container form {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.container select,
.container input {
    margin-bottom: 15px;
    padding: 12px;
    font-size: 16px;
    border: 2px solid #1877f2; 
    border-radius: 6px;
    outline: none;
    transition: border-color 0.3s ease;
}

.container select:focus,
.container input:focus {
    border: 2px solid #165ec9; 
    
}


.container .input-field {
    position: relative; 
}

.container .input-field input {
    width: 100%; 
}

.container .showHidePw {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    cursor: pointer;
    font-size: 18px;
    color: #999; 
}

.container .login-btn {
    background-color: #1877f2; 
    color: white;
    border: none;
    cursor: pointer;
    padding: 12px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 6px;
}

.login-btn:hover {
    background-color: #165ec9; 
}
