/*-------------------------------- RESET CSS ---------------------------------------*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
    margin: 0;
    padding: 0
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block
}

body {
    line-height: 1
}

ol,
ul {
    list-style: none
}

blockquote,
q {
    quotes: none
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: none
}

table {
    border-collapse: collapse;
    border-spacing: 0
}
* {
    box-sizing: border-box;
}
/*============================ END RESET CSS =======================================*/



@font-face {
    font-family: "Rubik";
    font-weight: 400;
    src: url(../font/Rubik-Regular.ttf);
}

@font-face {
    font-family: "Rubik";
    font-weight: 500;
    src: url(../font/Rubik-Medium.ttf);
}

@font-face {
    font-family: "Rubik";
    font-weight: 700;
    src: url(../font/Rubik-Bold.ttf);
}


html,
body {
    width: 100%;
    height: 100vh;
    font-family: Arial, Helvetica, sans-serif;
    font-family: 'Rubik', sans-serif;
    background-color: #2e5da7;
    color: #333;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;    
    font-size: 15px;
    line-height: 19px;
}

.login-container {
    background: #f3f2f1;
    background: linear-gradient(to bottom, #fff, #f3f2f1);
    padding: 20px 30px 40px 30px;
    border-radius: 13px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    width: 95%;
    max-width: 400px;
    text-align: center;
}

/* Logo placeholder */
.logo-placeholder {
    display: table;
    width: 100%;
    margin: 0 auto 20px auto;
    user-select: none;
}
.logo-placeholder img {
    display: table;
    margin: 0 auto;
    width: 100px;
    height: auto;
}
.logo-placeholder .logo_text {
    display: block;
    font-size: 15px;
    line-height: 21px;
    text-align: center;
    font-weight: bold;
    color: #2e5da7;
    margin: 10px auto;
}
.logo-placeholder .logo_text_auth {
    display: block;
    font-size: 25px;
    line-height: 30px;
    text-align: center;
    font-weight: bold;
    color: #2e5da7;
    margin: 20px auto 0 auto;
}

/* Input field */
input[type="email"] {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 20px;
    border: 1.5px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
    line-height: 19px;
    transition: border-color 0.3s ease;
}

input[type="email"]:focus {
    border-color: #2e5da7;
    outline: none;
}

/* Button styling */
button {
    display: table;
    width: 100%;
    font-weight: bold;
    letter-spacing: 1px;
    text-align: center;
    text-transform: none;
    padding: 15px 0;
    margin: auto;
    background: #0D85F5;
    color: #fff;
    border-radius: 5px;
    border: 0;
    border-bottom: 3px solid #2e5da7;
    border-right: 3px solid #2e5da7;
    position: relative;
    user-select: none;
    -moz-user-select: none;
    -khtml-user-select: none;
    -webkit-user-select: none;
    -o-user-select: none;
    text-decoration: none;
    box-sizing: border-box;
    padding-left: 30px !important;
    padding-right: 30px !important;
}

button:hover:not(:disabled) {
    cursor: pointer;
    background-color: #2e5da7;
}

button:disabled {
    /* background: rgb(13, 133, 245 / 70%); */
    opacity: 0.7;
    cursor: not-allowed;
}

/* Loader spinner */
.loader {
    display: none;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top: 3px solid white;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    animation: spin 1s linear infinite;    
}

/* Show loader when active */
button.loading .loader {
    display: block;
    position: absolute;
    top: 8px;
    right: 10px;
}

/* Hide button text when loading */
button.loading .btn-text {
    /* display: none; */
}

@keyframes spin {
    0% { transform: rotate(0deg);}
    100% { transform: rotate(360deg);}
}

#loginForm label {
    display: table;
    margin: 25px 0 7px 0;
    font-size: 18px;
    line-height: 23px;
    font-weight: bold;
    text-align: left;
}

.notificationError {
    border: 1px solid #FF004E;
    margin: 10px auto 10px auto;
    padding: 10px 10px;
    color: #FF004E;
    width: 100%;
    background: rgba(255, 0, 78, 0.07);
    text-align: center;
    /*display: none;*/
    box-sizing: border-box;
    border-radius: 5px;
}

.notificationSuccess {
    margin: 10px auto 10px auto;
    border: 1px solid #00e777;
    background: rgba(0, 231, 119, 0.07);
    /* color: #001e39; */
    padding: 10px 10px;
    display: table;
    width: 100%;
    text-align: center;
    box-sizing: border-box;
    border-radius: 5px;
}

.notificationGeneral {
    margin: 10px auto 10px auto;
    color: #004085;
    background-color: #cce5ff;
    border: 1px solid #2c91ff;
    padding: 20px 10px;
    display: table;
    width: 100%;
    text-align: center;
    box-sizing: border-box;
    border-radius: 5px;
}

hr {
    margin: 20px 0;
    border-top: 1px solid rgb(46 93 167 / 20%);
    border-bottom: 0;
}




/*----------- MEDIA QUERIES -------------*/
@media only screen and (max-width: 600px) {
    .login-container {
        padding: 20px 15px 40px 15px;
    }
}