/*-----------------
1. Google font
------------------*/

@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@100;200;300;400;500;600;700;800;900&display=swap');

body {
    background: #ECEFF1;
    color: #8790af;
    overflow-x: hidden;
}

div {
    justify-content: center;
    display: flex;
    width: 100%;
}

.login-cred {
    display: block;
    margin: 90px auto 0;
    background: #283593; 
    position: absolute;
    width: 400px;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}

.login-cred input {
    font-family: 'Raleway', sans-serif !important;
    width: 80%;
    padding: 10px 20px;
    outline: none;
    margin-bottom: 20px;
    border-radius: 20px;
    font-weight: 600 !important;
    font-size: 14px;
}

.login-title {
    font-family: 'Raleway', sans-serif !important;
    color: #fff;
    font-size: 18px;
    font-weight: 400;
    margin-top: 10px;
}

.login-cred input[type="email"]::placeholder {
    color: #000;
}

.login-cred input[type="email"] {
    background: #fff;
    color: #000;
    border: none;
}

.login-cred input[type="password"]::placeholder {
    color: #000;
}

.login-cred input[type="password"] {
    background: #fff;
    color: #000;
    border: none;
}

.login-error,
.logger {
    display: none;
}

.login-error {
    padding: 0;
    margin: 0;
    text-align: center;
    color: #ffcdd2;
    background: none;
    font-family: 'Raleway', sans-serif !important;
    font-weight: 600 !important;
    font-size: 14px;
}

.login-cred input[type="submit"] {
    font-family: 'Raleway', sans-serif !important;
    background: #fff;
    color: #000;
    border: none;
    outline: none;
    font-weight: 600 !important;
    font-size: 14px !important;
    cursor: pointer;
}

.login-cred input[type="submit"]:hover {
    opacity: 0.8;
}

/* Mobile Layout: 320px. */

@media only screen and (max-width: 767px) {
	.login-cred {
		width: 80%;
		border-radius: 20px;
	}
	
	.login-cred input {
		width: 100%;
		margin: 5px 0;
	}
	
	.login-cred input[type="submit"] {
		margin-bottom: 10px;
	}
}
