.login-container {
    display: flex;
    height: 100vh;
    flex-direction: row;
    font-family: 'Segoe UI', sans-serif;
}

.login-left {
    flex: 1;
    background-color: #2B2985;
    color: white;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.login-left .login-logo {
    width: 400px;
    margin-bottom: 2rem;
}

.login-right {
    flex: 1;
    background-color: #f7f9fc;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.login-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.login-header h3 {
    font-weight: bold;
    color: #2B2985;
    margin: 0;
}

.login-header-icon {
    position: absolute;
    top: 1rem;
    right: 1rem;
    height: 80px;
}

.input-with-icon {
    position: relative;
    margin-bottom: 1rem;
}

.icon-addon-left {
    position: absolute;
    top: 4px;
    left: 4px;
    background-color: #2B2985;
    padding: 0.5rem;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: calc(100% - 8px);
    width: 2rem;
    pointer-events: none;
}

.full-width-input {
    display: block;
    width: 100% !important;
}

.full-width {
    width: 100%;
}

.input-wrapper {
    position: relative;
    width: 100%;
    margin-bottom: 1rem;
}

    .input-wrapper input,
    .input-wrapper input[type="password"] {
        width: 100% !important;
        padding-left: 2.5rem !important;
        height: 42px;
        box-sizing: border-box;
    }

.icon-left {
    position: absolute;
    top: 50%;
    left: 0.5rem;
    transform: translateY(-50%);
    background-color: #2B2985;
    padding: 0.4rem;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 28px;
    width: 28px;
    pointer-events: none;
}

.input-first {
    margin-top: 2rem;
}

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

    .login-left,
    .login-right {
        flex: none;
        width: 100%;
        height: auto;
    }
}