body {
    font-family: "Montserrat", sans-serif;
    background-color: #03b698;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #00B597;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100%25' height='100%25' viewBox='0 0 800 400'%3E%3Cdefs%3E%3CradialGradient id='a' cx='396' cy='281' r='514' gradientUnits='userSpaceOnUse'%3E%3Cstop offset='0' stop-color='%2300DCB8'/%3E%3Cstop offset='1' stop-color='%2300B597'/%3E%3C/radialGradient%3E%3ClinearGradient id='b' gradientUnits='userSpaceOnUse' x1='400' y1='148' x2='400' y2='333'%3E%3Cstop offset='0' stop-color='%2300977E' stop-opacity='0'/%3E%3Cstop offset='1' stop-color='%2300977E' stop-opacity='0.5'/%3E%3C/linearGradient%3E%3C/defs%3E%3Crect fill='url(%23a)' width='800' height='400'/%3E%3Cg fill-opacity='0.4'%3E%3Ccircle fill='url(%23b)' cx='267.5' cy='61' r='300'/%3E%3Ccircle fill='url(%23b)' cx='532.5' cy='61' r='300'/%3E%3Ccircle fill='url(%23b)' cx='400' cy='30' r='300'/%3E%3C/g%3E%3C/svg%3E");
    background-attachment: fixed;
    background-size: cover;
}
.login-container {
    background: #fff;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 450px;
}

.btn-custom {
    background-color: #03b698;
    border: #03b698;
    padding: 10px 0;
}

input.form-control {
    padding: 10px 14px;
}

input:focus {
    border-color: #03b698 !important; /* Warna border focus */
    box-shadow: none !important; /* Shadow fokus */
    outline: #03b698 solid 1px !important; /* Menghapus outline default */
}

.error {
    color: red;
    font-size: 12px;
    margin-top: 10px;
}

.footer {
    text-align: center;
    font-size: 12px;
    color: #636363;
    background-color: #f8f9fa; /* Warna background */
}