/*-------New Login screen style-----*/
body {
    font-family: Arial, sans-serif;
    background: #f0f2f5;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
}

.new-login-box {
    background: #fff;
    padding: 30px;
    border-radius: 50px 0px 50px 0px;
    box-shadow: 0 6px 24px rgb(0 0 0 / 9%);
    width: 400px;
}

.new-login-title {
    margin:0px;
    text-align: center;
    color: #287be6;
    font-size: 24px;
    font-weight: bold;
}

.new-login-subtitle {
    font-size: 14px;
    margin:0px;
    font-style: italic;
    margin-bottom: 24px;
    text-align: center;
    color: #19396b;
}

.new-login-box .input-wrap {
    margin: 0 auto 18px;
}

.new-login-box .input-wrap label {
    font-size: 14px;
    font-weight: bold;
    color: #194c84;
    margin-bottom: 6px;
    display: block;
}

.new-login-box .input-wrap input {
    width: 100%;
    padding: 10px;
    border: 1px solid #d2e0f1;
    border-radius: 4px;
    font-size: 15px;
    transition: border-color 0.2s;
    box-sizing: border-box;
}

.new-login-box .input-wrap input:focus {
    border-color: #287be6;
    outline: none;
}

.new-login-box .login-button {
    width: 100%;
    padding: 11px;
    background: #287be6;
    color: #fff;
    border: none;
    font-weight: bold;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    margin-top: 6px;
    transition: background 0.2s;
}

.new-login-box .login-button:hover {
    background: #165ec6;
}

.new-login-box .error {
    color: #d8000c;
    font-size: 13px;
    text-align: center;
    margin-bottom: 10px;
    /* margin-bottom: 10px; */
    height:20px;
}
