body {
    background: linear-gradient(135deg, #1f2937, #3b82f6); /* Warna gradasi mirip Nanovest */
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    font-family: 'Poppins', sans-serif; /* Font yang mirip digunakan oleh Nanovest */
}

.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 200%;
    height: 100%;
    margin: 0;
}

.login-box {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 500px;
    text-align: center;
}

.logo {
    width: 200px;
    height: 70px;
    margin-bottom: 20px;
}

.login-box h2 {
    margin-bottom: 2rem;
    color: #333;
}

.login-box .form-group {
    margin-bottom: 1rem;
    text-align: left;
}

.login-box .form-group label {
    font-weight: bold;
}

.login-box .form-control {
    height: 45px;
    padding: 10px;
    font-size: 16px;
    border-radius: 25px;
    border: 1px solid #ddd;
}

.login-box .btn {
    padding: 10px;
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 1rem;
    background-color: #4a0072; /* Warna ungu tua */
    border: none;
    color: white;
    border-radius: 25px;
}

.login-box .btn:hover {
    background-color: #38005c; /* Warna ungu tua yang lebih gelap saat dihover */
}

.forgot-password {
    margin-top: 1rem;
}

.forgot-password a {
    color: #4a0072;
    text-decoration: none;
}

.forgot-password a:hover {
    text-decoration: underline;
}
