body {
    background-color: #7A5C99;
    font-family: Arial, sans-serif;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.container {
    text-align: center;
}

.login-box {
    background-color: #1D1D1D;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    width: 390px;
}

.logo img {
    display: block;
    margin: 0 auto 20px;
}

h2 {
    font size: 20px;
}

label {
    display: block;
    margin-bottom: 3px;
}

input {
    width: 95%;
    padding: 12px;
    margin: 5px 0;
    border-radius: 8px;
    border: none;
}

.login-controls {
    display: flex;           /* Use flexbox for alignment */
    justify-content: space-between; /* Space between controls */
    margin-top: 10px;      /* Optional margin for spacing */
}

.btn-login {
    margin-left: 40px;
    background-color: blue;  /* Set background color to blue */
    color: white;            /* Set text color to white */
    padding: 10px 20px;     /* Add padding for size */
    font-size: 14px;        /* Match size with 'Lupa Password' */
    border: none;           /* Remove default button border */
    border-radius: 2px;     /* Optional: add some border radius */
    cursor: pointer;        /* Change cursor to pointer */    /* Optional margin between button and link */
}

.forgot-password {
    align-self: center;             /* Center the link vertically */
    display: inline-block;          /* Allows padding and border settings */
    padding: 10px 20px;            /* Add some padding for better appearance */
    font-size: 14px;
    background-color: red;         /* Set the background color to red */
    color: white;                  /* Set the text color to white */
    text-decoration: none;          /* Remove underline */
    border-radius: 2px;            /* Add rounded corners */
    cursor: pointer;
    margin-right: 40px;
}

.btn-login:hover {
    background-color: darkblue; /* Change color on hover */
}

.forgot-password:hover {
    background-color: darkred; /* Change color on hover */
}


.portal-link {
    align-self: center;             /* Center the link vertically */
    display: inline-block;          /* Allows padding and border settings */
    padding: 10px 147px;            /* Add some padding for better appearance */
    font-size: 14px;
    background-color: #a9ba90;    /* Set the background color to red */
    color: white;                   /* Set the text color to white */
    text-decoration: none;          /* Remove underline */
    border-radius: 2px;             /* Add rounded corners */
    cursor: pointer;
    margin-top: 15px;
}

.footer {
    margin-top: 20px;
    font-size: 12px;
}