html {
    height: 100%;
    width: 100%;

    font-family: "Noto Sans";
    font-size: 16px;
}

* {
    box-sizing: border-box;
}

body {
	height: inherit;
	width: inherit;

	font-size: 16px;

    margin: 0;
}

.login {
    height: inherit;
    width: inherit;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.login__logo {}

.input__wrap {

    position: relative;

    box-sizing: unset;

   padding: 1rem 0rem 0 0rem;
}

.input__wrap input {
    height: 2rem;
    width: 100%;

    font-size: 0.85rem;
    font-family: "Noto Sans";
    color: #212121;

    box-sizing: inherit;

    padding: 1.5rem 0.5rem 0 0.5rem;

    border: 1px solid #e0e0e0;
    border-radius: 4px;

    transition: 0.365s;

    z-index: 1;
}

.input__wrap.input__wrap--mono input {
    font-family: "Roboto Mono";
}

.input__wrap input:focus {
    border: 1px solid #003892;

    outline: none;
}

.input__wrap .input-wrap__header {
    font-family: "Roboto Mono";
    font-size: 0.75rem;
    color: #757575;

    margin: 0.5rem;
    padding-top: inherit;

    position: absolute;
    top: 0;

    user-select: none;
    pointer-events: none;

    transition: 0.365s;

    z-index: 2;
}

.input__wrap input:focus+.input-wrap__header {
    color: #003892;
}

.login__btn-group {
	display: flex;
	align-items: end;

	margin: 1rem 0 0 0rem;
}

.login__button {
	height: 2rem;

	background-color: #0138A8;

	color: white;
	font-family: "Raleway";
	font-size: 0.88rem;
	font-weight: 600;

	border: none;
	border-radius: 4px;
	padding: 0.5rem 0.75rem;


	user-select: none;
	cursor: pointer;
	transition: 0.365s;
}

.login__button:hover {
	background-color: #00327F;
}

.login__button:focus {
	background-color: #012648;

	outline: none;
}

.login__link {
	color: rgba(0, 0, 0, 0.6);
	font-family: "Raleway";
	font-size: 0.88rem;
	font-weight: 500;

	margin-left: 0.5rem;

	cursor: pointer;
	transition: 0.365s;
}

.login__link:hover {
	color: rgba(0, 0, 0, 0.9);
}

.alert-danger-custom{
    color: red;
    font-weight: bold;
    padding: 1rem 0rem 0 0rem;

}

.alert-primary{
    font-weight: bold;
    padding: 1rem 0rem 0 0rem;

}