@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap");

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #fff;
}

.form-container {
    background-color: #ffecec;
    border-radius: 16px;
    padding: 30px 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-align: center;
    width: 350px;
}

.logo {
    width: 80px;
    height: 80px;
    border-radius: 50%; /* Membuat bentuk bulat */
    object-fit: cover; /* Memastikan gambar tidak terdistorsi */
    margin-bottom: 15px;
}

h1 {
    font-size: 24px;
    color: #ff6b6b;
    margin-bottom: 20px;
    font-weight: bold;
    font-family: "Poppins", sans-serif;
}

label {
    display: block;
    text-align: left;
    margin: 10px 0 5px;
    font-weight: bold;
    font-size: 14px;
    color: #2b2b2b;
    font-family: "Poppins", sans-serif;
}

.input-group {
    display: flex;
    align-items: center;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 5px 10px;
    margin-bottom: 15px;
    position: relative;
    font-family: "Poppins", sans-serif;
}

.input-group input {
    border: none;
    outline: none;
    width: 100%;
    padding: 10px;
    font-size: 14px;
    font-family: "Poppins", sans-serif;
}

.custom-button {
    display: inline-block;
    background-color: #F6995C;
    color: white;
    padding: 10px 10px;
    font-size: 1.1em;
    text-align: center;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 20%; /* Membuatnya kotak besar */
    margin-top: 20px; /* Tambah jarak dari konten atas */
    font-family: "Poppins", sans-serif;
}

.custom-button:hover {
    background-color: #F6995C;
    transform: scale(1.05);
}