body {
    font-family: Arial, sans-serif;
    background-color: #f0f2f5;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-image: url(/img/underwater2.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.container {
    display: flex;
    max-width: 900px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.left-side {
    background: linear-gradient(to bottom, #66b3ff, #00cc99);
    color: white;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 50%;
    text-align: center;
}

.left-side img {
    max-width: 100%;
    height: auto;
}

.right-side {
    padding: 40px 30px;
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.logo img {
    display: block;
    margin: 0 auto;
    height: 120px;
    width: 120px;
}

.ckpp {
    text-align: center;
    margin-top: 0px; /* Move text upwards */
    padding: 0;
}

.ckpp::before {
    content: "Selamat Datang di KA'RITA";
    display: block;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 5px;
}

.ckpp::after {
    content: "BRPBATPP";
    display: block;
    font-size: 16px;
    margin-top: 0;
    font-weight: normal;
}


.right-side {
    padding: 20px 30px;
    margin-top: -40px; /* Move content higher */
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    color: #333;
}

.form-group input[type="email"],
.form-group input[type="password"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
}

.form-group button {
    width: 100%;
    padding: 10px;
    background: linear-gradient(to right, #66b3ff, #00cc99);
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.3s ease;
}

.form-group button:hover {
    background: linear-gradient(to right, #00cc99, #66b3ff);
}

.additional-links {
    margin-top: 20px;
    text-align: center;
}

.additional-links a {
    color: #22627d;
    text-decoration: none;
    margin: 0 10px;
}

.additional-links a:hover {
    text-decoration: underline;
}

.link-container a {
    display: inline-block;
    color: #007bff; /* Warna biru untuk link */
    text-decoration: none; /* Menghilangkan garis bawah */
    font-size: 13px;
    transition: color 0.3s ease; /* Efek transisi saat hover */
}

.link-container a:hover {
    color: #0056b3; /* Warna saat hover */
    text-decoration: underline; /* Garis bawah saat hover */
}
