body {
    background-color: #e6f0fa; /* biru muda */
    font-family: poppins;
}
label {
    font-weight: normal;
    font-family: poppins;
    color: #ffffff;
}
.wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.inner-warpper {
    background: white;
    padding: 20px 25px;
    border-radius: 12px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    width: 300px; /* Ukuran lebih kecil */
    margin: 0 auto;
}

.inner-warpper form {
    display: flex;
    flex-direction: column;
}

.tulisan_login {
    text-align: center;
    font-family: poppins;
    font-size: 24px;
    font-weight: normal;
    color: #000000;
    margin-bottom: 30px;
}

.form_login {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    font-size: 14px;
    border: 1px solid #ccddee;
    border-radius: 5px;
    background-color: #f9fbfd;
    transition: 0.3s ease;
}

.form_login:focus {
    border-color: #007bff;
    outline: none;
    background-color: #ffffff;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

.tombol {
    margin-top: 10px;
    padding: 5px;
    background-color: black;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
}

.tombol:hover {
    background-color: #bcbcbc;
    color: #000;
}
p {
    text-align: center;
    margin-top: 20px;
    color: #000000;
}
a {
  color: #337AB7;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}
