/* Mengatur font dan reset dasar */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #f0f2f5;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

/* Wadah utama untuk form login */
.login-container {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
    text-align: center;
}

/* Logo di atas */
.logo {
    width: 150px;
    height: 150px;
    border-radius: 50%; /* Membuat gambar menjadi lingkaran */
    object-fit: cover;

}

h1 {
    font-size: 24px;
    color: #333;
    margin-bottom: 25px;
}

/* Grup untuk label dan input */
.input-group {
    margin-bottom: 20px;
    text-align: left;
}

.input-group label {
    display: block;
    font-size: 14px;
    color: #555;
    margin-bottom: 8px;
    font-weight: 500;
}

.input-group input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    outline: none; /* Menghilangkan garis biru saat diklik */
    transition: border-color 0.3s;
}

.input-group input:focus {
    border-color: #007bff; /* Mengubah warna border saat input aktif */
}

/* Opsi "Lupa Password?" */
.options {
    text-align: right;
    margin-bottom: 20px;
}

.forgot-password {
    font-size: 13px;
    color: #007bff;
    text-decoration: none;
}

.forgot-password:hover {
    text-decoration: underline;
}

/* Tombol Login */
.login-btn {
    width: 100%;
    padding: 12px;
    border: none;
    background-color: #007bff;
    color: white;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.login-btn:hover {
    background-color: #0056b3;
}

/* Tautan Sign Up di bawah */
.signup-link {
    margin-top: 25px;
    font-size: 14px;
    color: #555;
}

.signup-link a {
    color: #007bff;
    text-decoration: none;
    font-weight: 600;
}

.signup-link a:hover {
    text-decoration: underline;
}