/* Reset some default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body and background */
body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #00bfae, #007d5f);
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Center the login box */
.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

/* Login box styling */
.login-box {
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 380px;
    text-align: center;
    border-top: 5px solid #00bfae;
}

/* Logo styling */
.logo img {
    max-width: 120px;
    margin-bottom: 20px;
}

/* Heading */
h2 {
    margin-bottom: 20px;
    font-size: 24px;
    color: #007d5f;
    font-weight: bold;
}

/* Input fields styling */
/* Styling untuk input field dengan ikon */
.textbox {
    position: relative;
    margin-bottom: 20px;
}

.textbox input {
    width: 100%;
    padding: 12px 40px 12px 40px; /* Menambah padding untuk memberi ruang pada ikon */
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    outline: none;
    transition: all 0.3s ease;
}

.textbox input:focus {
    border-color: #00bfae;
    box-shadow: 0 0 5px rgba(0, 191, 174, 0.5);
}

/* Menambahkan ikon di dalam input field */
.textbox i {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
    color: #888;
}

/* Remember me checkbox */
.form-check {
    text-align: left;
    margin-bottom: 20px;
}

.form-check input {
    margin-right: 8px;
}

.form-check-label {
    font-weight: normal;
    color: #555;
}

/* Login button styling */
.btn-login {
    width: 100%;
    padding: 12px;
    background-color: #00bfae;
    border: none;
    color: white;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-login:hover {
    background-color: #007d5f;
}

/* Footer links styling */
.footer-links {
    margin-top: 20px;
    font-size: 14px;
    color: #555;
}

.footer-links p {
    margin: 5px 0;
}

.footer-links a {
    color: #00bfae;
    text-decoration: none;
}

.footer-links a:hover {
    text-decoration: underline;
}
/* Styling untuk copyright */
.copyright {
    text-align: center;
    margin-top: 30px;
    font-size: 14px;
    color: #888;
    padding: 15px 0;
}

/* Link styling */
.copyright a {
    color: #00bfae;
    text-decoration: none;
    font-weight: normal;
}

.copyright a:hover {
    text-decoration: underline;
}

/* Responsif */
@media (max-width: 600px) {
    .copyright {
        font-size: 12px;
        padding: 10px 0;
    }
}
