
/*spinner css*/
.overlay-screen {
    position: fixed;
    top: 0;
    bottom: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
    left: 0;
    display: flex;
    flex-flow: column;
    justify-content: center;
    text-align: center;
    z-index: 10000;
}

.loader {
    margin: 0 auto;
    text-align: center;
    position: absolute;
    left: 0;
    right: 0;
    padding: 5px;
}

.c-pointer {
    cursor: pointer
}

.field-validation-error {
    color: red;
}
/* Reset base styles */
/* Reset base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #2d3e50; /* Dark background */
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-wrapper {
    width: 100%;
    max-width: 400px;
    padding: 20px;
}

.login-card {
    background-color: #f4f4f4; /* Light box background */
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.login-title {
    text-align: center;
    margin-bottom: 25px;
    color: #2d3e50; /* Dark title text */
    font-size: 1.5rem;
    font-weight: 600;
}

.input-group {
    margin-bottom: 20px;
}

.input-group label {
    display: block;
    margin-bottom: 6px;
    color: #2d3e50; /* Dark label text */
    font-size: 0.95rem;
}

.input-group input {
    width: 100%;
    padding: 10px 12px;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 6px;
    background-color: #fff;
    transition: border 0.2s;
}

.input-group input:focus {
    outline: none;
    border-color: #a41034; /* Button color as accent */
}

.login-button {
    display: block;
    text-align: center;
    width: 100%;
    padding: 10px;
    background-color: #a41034; /* Button color */
    color: white;
    font-size: 1rem;
    text-decoration: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.login-button:hover {
    background-color: #86102a; /* Darker hover */
    color: white;
}

.login-footer {
    text-align: center;
    margin-top: 15px;
}

.forgot-link {
    font-size: 0.9rem;
    color: #a41034; /* Match button color */
    text-decoration: none;
}

.forgot-link:hover {
    text-decoration: underline;
}
.response-msg
{
    color:red;
}
.btn-info {
    background: #a41034;
    color: white;
    border: 1px solid #a41034;
    line-height: 1.2;
    font-size: 14px;
}
