/* Login page specific styles */
.container {
    width: 750px;
    display: flex;
    align-items: center;
}
.logo-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0px;
    border-right: 2px solid #ddd;
    border-radius: 12px 0 0 12px;
}
.form-section {
    flex: 2;
    padding: 30px;
    background-color: #ffffff;
    border-radius: 0 12px 12px 0;
}

.info-text {
    font-size: 14px;
    color: #555;
    text-align: center;
    margin-bottom: 15px;
}