	/* Umum untuk seluruh body */
body {
    font-family: 'Roboto', sans-serif;
    background-color: #f7f1e3; /* Warna pastel lembut */
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

/* Styling form (baik untuk login maupun registrasi) */
form {
    background-color: #fff8f0; /* Warna pastel lembut untuk form */
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
    text-align: center;
}

/* Judul form */
h1 {
    color: #4c4c4c;
    font-size: 28px;
    margin-bottom: 20px;
}

/* Label input */
label {
    font-weight: bold;
    color: #5d6d7e;
    display: block;
    margin-bottom: 8px;
    margin-top: 10px;
}

/* Input text dan password */
input[type="text"],
input[type="password"] {
    width: 100%;
    padding: 12px 0;
    margin-bottom: 20px;
    border: 2px solid #fab1a0; /* Warna pastel untuk border */
    border-radius: 5px;
    font-size: 16px;
    background-color: #f5e1e1;
    transition: border-color 0.3s ease;
}

/* Fokus pada input text dan password */
input[type="text"]:focus,
input[type="password"]:focus {
    border-color: #ff6f61;
    outline: none;
    box-shadow: 0 0 5px rgba(255, 111, 97, 0.3);
}

/* Tombol untuk login atau registrasi */
button {
    width: 100%;
    padding: 12px;
    border: none;
    background-color: #ff6f61; /* Warna pastel untuk tombol */
    color: #fff;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

/* Hover effect pada tombol */
button:hover {
    background-color: #ff4e42;
}

/* Teks tautan di bawah tombol */
p {
    font-size: 16px;
    color: #5d6d7e;
    margin-top: 15px;
}

/* Styling untuk tautan "Belum punya akun?" */
a {
    color: #ff6f61;
    text-decoration: none;
    font-size: 16px;
    display: inline-block;
    margin-top: 10px;
}

/* Hover pada tautan */
a:hover {
    text-decoration: underline;
}
