@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    overflow: hidden;
    background-color: #ffffff;
}

.split-layout {
    display: flex;
    width: 100vw;
    height: 100vh;
}

.img-side {
    flex: 1.2;
    background: #f8f9fa;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.img-side::before {
    display: none;
}

.brand-content {
    z-index: 1;
    padding: 2rem;
    width: 100%;
    display: flex;
    justify-content: center;
}

.img-side img {
    width: 85%;
    max-width: 600px;
}

.login-side {
    flex: 1;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 3rem;
    box-shadow: -10px 0 30px rgba(0,0,0,0.03);
    z-index: 2;
}

.login-form-container {
    width: 100%;
    max-width: 420px;
}

/* Logo CSS */
.brand-logo-right {
    display: flex;
    align-items: center;
    margin-bottom: 3rem;
    gap: 12px;
}

.logo-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #2a5298, #1e3c72);
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(42, 82, 152, 0.3);
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: -0.5px;
}

.form-header {
    margin-bottom: 2.5rem;
}

.form-header h3 {
    font-size: 2.2rem;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.input-group {
    position: relative;
    margin-bottom: 1.5rem;
    width: 100%;
}

.input-group i {
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
    color: #a0a0a0;
    transition: 0.3s;
    font-size: 1.1rem;
    z-index: 2;
}

.input-group input {
    width: 100%;
    padding: 16px 16px 16px 45px;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    color: #333;
    border: none;
    border-bottom: 2px solid #e0e0e0;
    background: transparent;
    outline: none;
    transition: 0.3s;
    border-radius: 0;
}

.input-group input:focus {
    border-bottom-color: #2a5298;
}

.input-group input:focus + i {
    color: #2a5298;
}

.input-group input::placeholder {
    color: #b3b3b3;
}

.btn-login {
    display: block;
    width: 100%;
    padding: 16px;
    background: #2a5298;
    color: white;
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
    margin-top: 1.5rem;
    box-shadow: 0 4px 15px rgba(42, 82, 152, 0.2);
}

.btn-login:hover {
    background: #1e3c72;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(42, 82, 152, 0.3);
}

/* Demo account info box styling */
.demo-account-info {
    background: #2a5298;
    color: white;
    padding: 16px;
    border-radius: 8px;
    margin-top: 1.5rem;
    text-align: center;
    font-size: 1rem;
}
.demo-account-info p {
    margin: 5px 0;
}
.demo-account-text {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

@media screen and (max-width: 900px) {
    .split-layout {
        flex-direction: column;
    }
    .img-side {
        display: none;
    }
    .login-side {
        padding: 2rem;
    }
}