@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: 'Poppins', sans-serif;
    background-color: #f4f7f6;
}

.login-container {
    display: flex;
    height: 100vh;
    width: 100%;
}

.login-image {
    flex: 1;
    position: relative;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px;
    box-sizing: border-box;
    background-image: url('http://pengarsipankurikulumsmk.my.id/img/keren.png'); 
    background-size: cover; 
    background-position: center;
}

.image-content {
  position: relative;
  z-index: 1;
  padding: 20px;
  border-radius: 10px;
}

.image-content h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7); 
}

.image-content p {
    font-size: 1.1em;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7); 
}

.login-form {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #ffffff;
}

.form-wrapper {
    width: 80%;
    max-width: 400px;
}

.form-header {
    text-align: center;
    margin-bottom: 40px;
}

.logo {
    width: 60px;
    margin-bottom: 15px;
}
.form-header h2 {
    margin: 0;
    font-size: 1em;
    font-weight: 500;
    color: #555;
}
.form-header h1 {
    margin: 0;
    font-size: 1.5em;
    font-weight: 700;
}

.input-group {
    margin-bottom: 25px;
    position: relative;
}

.input-group label {
    display: none;
}

.input-group input {
    width: 100%;
    padding: 15px 20px 15px 50px;
    border: 1px solid #e0e0e0;
    border-radius: 50px;
    box-sizing: border-box;
    background-color: #f7f7f7;
    font-size: 1em;
    transition: border-color 0.3s;
    background-repeat: no-repeat;
    background-position: 18px center;
    background-size: 20px;
}

.input-group input::placeholder {
    color: #aaa;
}

.input-group input:focus {
    outline: none;
    border-color: #8A2BE2;
}

/* === PERUBAHAN UTAMA DI SINI (IKON DI DALAM CSS) === */

#username {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23888' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 21v-2a4 4 0 0 0-4-4H8a4 4 0 0 0-4 4v2'%3E%3C/path%3E%3Ccircle cx='12' cy='7' r='4'%3E%3C/circle%3E%3C/svg%3E");
}

#password {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23888' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='11' width='18' height='11' rx='2' ry='2'%3E%3C/rect%3E%3Cpath d='M7 11V7a5 5 0 0 1 10 0v4'%3E%3C/path%3E%3C/svg%3E");
}

/* === AKHIR PERUBAHAN === */


.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    font-size: 0.9em;
}

.remember-me {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.remember-me label {
    padding-left: 8px;
    color: #555;
}

.remember-me input[type="checkbox"] {
    display: none;
}

.remember-me input[type="checkbox"] + label:before {
    content: '';
    display: inline-block;
    width: 18px;
    height: 18px;
    border: 2px solid #ddd;
    border-radius: 5px;
    vertical-align: middle;
    margin-right: 8px;
    transition: all 0.2s;
}

.remember-me input[type="checkbox"]:checked + label:before {
    background-color: #6200EE;
    border-color: #6200EE;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
    background-size: 12px;
    background-position: center;
    background-repeat: no-repeat;
}

.forgot-password {
    color: #888;
    text-decoration: none;
}

.forgot-password:hover {
    text-decoration: underline;
}

.login-button {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 50px;
    color: white;
    font-size: 1.1em;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    background: linear-gradient(90deg, #D946EF, #8A2BE2);
    transition: opacity 0.3s ease;
}

.login-button:hover {
    opacity: 0.9;
}