/* Secure Login Plugin Styles */
body {
    font-family: 'Roboto', sans-serif !important;
    display: flex !important;
    height: 100vh !important;
    margin: 0 !important;
	background-color: #f6f6f6;
}



.login-container {
    display: flex;
    width: 100%;
    position: relative;
}


.slp-form {
    max-width: 400px;
    margin: 50px auto;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.slp-form input {
    width: 94%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.slp-form button {
    width: 100%;
    padding: 10px;
    background: #0073aa;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.slp-form button:hover {
    background: #005a87;
}


.login-left {
    background: #1D252C;
    color: white;
    width: 50%;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
	height: 100vh !important;
}

.logo {
    position: absolute;
    top: 20px;
    left: 20px;
}

.login-left h1 {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 10px;
}

.login-left p {
    font-size: 14px;
    opacity: 0.8;
}

.image-slider {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.image-slider img {
    max-width: 80%;
    margin-top: 20px;
    display: block;
}

.login-right {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #f6f6f6;
}
label {
    font-size: 14px;
    color: #1D252C;
    font-weight: 400;
}

form {
    padding: 40px;
    border-radius: 8px;
    width: 100%;
    max-width: 400px;
}
p.form-bottom-text {
    color: #1D252C;
    font-size: 14px;
    line-height: 21px;
    font-weight: 500;
}
h2 {
    font-size: 20px;
    margin-bottom: 10px;
}

input, button {
    display: block;
    width: 100%;
    margin: 10px 0;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
}

button {
    background: #1e3a8a;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
}

button:hover {
    background: #1a237e;
}

a {
    display: block;
    text-align: center;
    margin-top: 10px;
    color: #1e3a8a;
    text-decoration: none;
    font-weight: bold;
}

a:hover {
    text-decoration: underline;
}

.language-selector {
    position: absolute;
    top: 20px;
    right: 20px;
}

.language-selector button {
    display: flex;
    align-items: center;
    background: white;
    border: 1px solid #ccc;
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 14px;
}

.language-selector img {
    width: 16px;
    margin-left: 5px;
}


 .loading-spinner {
        display: inline-block;
        width: 16px;
        height: 16px;
        border: 2px solid white;
        border-top: 2px solid transparent;
        border-radius: 50%;
        animation: spin 0.6s linear infinite;
        margin-left: 10px;
    }

    @keyframes spin {
        0% { transform: rotate(0deg); }
        100% { transform: rotate(360deg); }
    }

    #slp-login-response {
        margin-top: 10px;
        padding: 10px;
        display: none;
        border-radius: 5px;
    }
    
	 #slp-forgot-response {
        margin-top: 10px;
        padding: 10px;
        display: none;
        border-radius: 5px;
    }
#slp-reset-response {
        margin-top: 10px;
        padding: 10px;
        display: none;
        border-radius: 5px;
    }
    .slp-success {
        background-color: #d4edda;
        color: #155724;
        border: 1px solid #c3e6cb;
    }

    .slp-error {
        background-color: #f8d7da;
        color: #721c24;
        border: 1px solid #f5c6cb;
    }
/* Responsive Design */
@media screen and (max-width: 1024px) {
    .login-container {
        flex-direction: column;
    }
    .login-left, .login-right {
        width: 100%;
    }
    .login-left {
        padding: 30px;
    }
    .image-slider img {
        max-width: 60%;
    }
    form {
        padding: 30px;
    }
}

@media screen and (max-width: 768px) {
    .login-left h1 {
        font-size: 20px;
    }
    .login-left p {
        font-size: 12px;
    }
    .image-slider img {
        max-width: 50%;
    }
    form {
        padding: 20px;
    }
    input, button {
        padding: 10px;
    }
}

@media screen and (max-width: 480px) {
    .login-left {
        padding: 20px;
    }
    .image-slider img {
        max-width: 40%;
    }
    .logo {
        top: 10px;
        left: 10px;
    }
    .language-selector {
        top: 10px;
        right: 10px;
    }
}