* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    overflow: hidden;
}

.login-container {
    display: flex;
    height: 100vh;
}

.left-section {
    flex: 1;
    background-image: linear-gradient(rgba(0, 7, 20, 0.4), rgba(0, 7, 20, 0.4)), 
                      url('../assets/Background_login.png');
    background-size: cover;
    background-position: center left; 
    display: flex;
    flex-direction: column;
    padding: 60px;
    color: white;
}

.header-logos-login {
    display: flex;
    gap: 20px;
}

.header-logos-login img {
    height: 50px;
    width: auto;
}

.hero-content-wrapper {
    flex: 1;
    display: flex;
    align-items: center; 
    justify-content: flex-start;
}

.hero-text-login h1 {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 900;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5); 
}

.sub-text {
    font-size: 18px;
    opacity: 0.9;
    font-weight: 400;
    max-width: 500px; 
}

.right-section {
    width: 480px;
    background: white;
    display: flex;
    flex-direction: column; 
    align-items: center;
    justify-content: center;
    padding: 40px 60px;
    position: relative; 
}

.form-wrapper {
    width: 100%;
}

.text-center {
    text-align: center;
}

.header-form {
    margin-bottom: 35px;
}

.header-form h2 {
    font-size: 32px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.welcome-p {
    color: #888;
    font-size: 15px;
}

/* Input Styles */
.input-group {
    margin-bottom: 25px;
}

.input-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 700;
    font-size: 14px;
    color: #333;
}

.input-container {
    display: flex;
    align-items: center;
    background-color: #f3f8ff; 
    border-radius: 10px;
    padding: 2px 15px;
    border: 1.5px solid transparent;
    transition: 0.3s;
}

.input-container:focus-within {
    border-color: #007bff;
    background-color: #fff;
}

.input-container i.icon, 
.eye-icon {
    color: #a0aec0;
}

input[type="text"], 
input[type="password"] {
    width: 100%;
    padding: 14px 12px;
    background: transparent;
    border: none;
    outline: none;
    font-size: 15px;
    color: #1a1a1a;
}

.eye-icon {
    cursor: pointer;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 30px;
}

.lupa-sandi {
    color: #007bff;
    text-decoration: none;
}

.btn-login {
    width: 100%;
    padding: 16px;
    background: #4da3ff;
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 18px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(77, 163, 255, 0.3);
    transition: 0.3s;
}

.btn-login:hover {
    background: #3b8eeb;
}

.footer-login {
    position: absolute;
    bottom: 30px;
    width: 100%;
    text-align: center;
    font-size: 12px;
    color: #aaa;
    line-height: 1.6;
}

.footer-info {
    font-weight: 600;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}