body {
    font-family: 'Poppins', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background: #111;
    background-color: #f8fffb;
}

.container {
    display: flex;
    width: 800px;
    background: #fff;
    border-radius: 10px;
    overflow: auto;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
}

.form-box {
    flex: 1;
    padding: 40px;
}

.form-box h2 {
    margin-bottom: 10px;
}

.form-box input {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border-radius: 6px;
    border: 1px solid #ccc;
}

button {
    background-color: #00a38c;
    color: white;
    border: none;
    padding: 10px 20px;
    width: 100%;
    border-radius: 6px;
    cursor: pointer;
    margin-top: 10px;
}

.bg-box {
    flex: 1;
    background-color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bg-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.container-text p1 {
    color: #00a38c;
    background-color: aqua
}

/* login */
input {
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 14px;
}

/* Sembunyikan placeholder saat fokus */
input:focus::placeholder {
    color: transparent;
}

/* Placeholder normal */
input::placeholder {
    color: #888;
    transition: color 0.3s ease;
}

/* === Notifikasi Alert Pesan === */
.alert-message {
    position: fixed;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    padding: 12px 24px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    font-weight: 500;
    text-align: center;
    width: fit-content;
    max-width: 90%;
    animation: fadeOut 3s ease forwards;
}

.alert-message.sukses {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.alert-message.info {
    background: #cce5ff;
    color: #004085;
    border: 1px solid #b8daff;
}

@keyframes fadeOut {
    0% {
        opacity: 1;
    }

    80% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        display: none;
    }
}

.errors {
    color: #b60000;
    font-size: 13px;
    display: block;
    margin-bottom: 10px;   
    margin-top: 3px;       
}
.select-login{
    width: 100%;
    height: 35px;
}