/* Reset CSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: sans-serif;
    background: #FFFFFF;
    color: #fff;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px 25px;
    width: 100%;
    max-width: 500px;
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.2);
}

h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    text-align: center;
    color: #000000;
}

form {
    display: flex;
    flex-direction: column;
}

input {
    margin-bottom: 15px;
    padding: 10px;
    border: none;
    border-radius: 5px;
    background: rgba(221, 221, 221, 0.418);
    color: #000000;
    font-size: 1rem;
}

input::placeholder {
    color: #5f5f5f;
}

button {
    padding: 10px 50px;
    border: none;
    border-radius: 3px;
    background: #2c3e50;
    color: #fff;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background 0.3s ease;
    margin: 10px auto 0; /* Margin auto untuk membuat tombol berada di tengah */
}

button:hover {
    background: #2c3e5077;
}

a {
    color: #0016CF;
    text-decoration: none;
    font-size: 0.9rem;
    text-align: center;
}

a:hover {
    text-decoration: underline;
}

p {
    margin-top: 15px;
    text-align: center;
    color:#000000 ;
}
