/* css for login.mak */

#login-panel {
    margin: auto;
    margin-top: 70px;
    padding: 10px 20px;
    width: 450px;
    background-color: #343a40;
    border: 1px solid #454d55;
    box-shadow: 0 0 3px #06bcee; /* Adds a glow effect */
}

#login-header {
    font-size: 27px;
    margin-bottom: 20px;
    font-weight: bold;
}

#login-form input {
    margin-top: 15px;
    margin-bottom: 3px;
    font-size: 18px;

    background-color: #313131;  /* Dark background */
    color: #ddd;            /* Light text */
    border: 1px solid #555; /* Slightly lighter border for visibility */
    padding: 20px 18px;      /* Some padding for aesthetics */
    font-size: 16px;        /* Readable text size */

    /* Optional: styling for focus state */
    outline: none; /* Removes the default focus outline */
}

#login-form input:focus {
    background-color: #313131;  /* Keeps the background dark on focus */
    color: #fff;             /* Keeps the text color light on focus */
    border-color: #06bcee;   /* Adds a custom border color on focus */
}

#login-form input:placeholder {
    color: #bbb; /* Lighter placeholder text for better readability */
}

#login-form .acc-action {
    margin-top: 20px;
    margin-bottom: 18px;
}

#login-btn {
    width: 100%;
    margin-bottom: 20px;
}

#login-panel .error {
    color: #d00300;
    font-size: 13px;
}

.login-error {
    color: #d00300;
    font-size: 15px;
}

#login-panel .activation-status {
    color: #fff;
    padding-bottom: 8px;
}

.multiple-login-status {
   margin-bottom: 23px;
   font-size: 15px;
   line-height: 25px;
   color: #d00300;
}


