* {
    margin: 0;
    padding: 0;
}
html, body {
    height:100vh !important;
}
body {
    background-image: url('/storage/shkollori9.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.container {
    position: absolute;
    width: auto;
    height: auto;
    top: calc(50% - 280px);
    left: calc(50% - 160px);
}

.form {
    position: absolute;
    text-align: center;
    background: #fff;
    width: 290px;
    height: 490px;
    border-radius: 5px;
    padding: 30px 20px 0 20px;
    box-shadow: 0 10px 50px 0 rgba(0, 0, 0, 0.25);
    box-sizing: border-box;
}

p {
    font-family: 'Roboto', sans-serif;
    font-weight: 100;
    text-transform: uppercase;
    font-size: 12px;
    color: #525252;
    margin-bottom: 40px;
}

p>span {
    padding-top: 3px;
    display: block;
    font-weight: 400;
    font-size: 9px;
}

h4 {
    font-family: 'Dosis' !important;
    text-transform: uppercase !important;
    color: #525252 !important;
    margin-bottom: 30px !important;
}

input,
button {
    outline: none !important;
}


.form-btn {
    position: absolute;
    width: 50%;
    height: 60px;
    bottom: 0;
    border: 0;
    font-family: 'Dosis';
    font-size: 18px;
    /* text-transform: uppercase; */
    cursor: pointer;
}

.form-btn.sx {
    left: 0;
    display: flex;
    width: 66.6666%;
}

.form-btn.sx>button {
    outline: none !important;
    width: 50%;
    height: 60px;
    /* border-radius: 0 0 0 5px; */
    border: none;
    margin-right: 2px;
    background-color: rgba(134, 90, 141, 0.8);
    color: #fff;
    transition: all 0.3s linear;
}

.form-btn.sx>button:hover {
    background-color: rgba(134, 90, 141, 1);
    color: #fff;
}

/* button.form-btn.sx.back {
			background-color: rgba(0, 0, 0, 0.15);
			transition:all 0.3s linear;
		}

		button.form-btn.sx.back:hover {
			background-color: rgba(0, 0, 0, 0.35);
		} */

button.form-btn.dx {
    width: 33.3333%;
    right: 0;
    border-radius: 0 0 5px 0;
    background-color: rgba(0, 143, 161, 0.7);
    color: #fff;
}

button.form-btn.dx:hover {
    background-color: rgba(0, 143, 161, 1);
    color: #fff;
}

.form>input {
    border: none;
    border-bottom: 1px solid #ffc185;
    width: 85%;
    font-family: 'Roboto';
    text-align: center;
    font-size: 21px;
    font-weight: 100;
    margin-bottom: 25px;
}

::-webkit-input-placeholder {
    color: #ffc185;
    font-family: 'Roboto';
    font-weight: 100;
}

:-moz-placeholder {
    color: #ffc185;
    font-family: 'Roboto';
    font-weight: 100;
}

::-moz-placeholder {
    color: #ffc185;
    font-family: 'Roboto';
    font-weight: 100;
}

:-ms-input-placeholder {
    color: #ffc185;
    font-family: 'Roboto';
    font-weight: 100;
}

.signIn input,
.signUp .w100 {
    width: 100%;
}

.signIn {
    z-index: 1;
    transform: perspective(100px) translate3d(100px, 0px, -30px);
    opacity: 0.5;
}

.signUp {
    z-index: 2;
}

.active-dx {
    animation-name: foregrounding-dx;
    animation-duration: 0.9s;
    animation-fill-mode: forwards;
}

.active-sx {
    animation-name: foregrounding-sx;
    animation-duration: 0.9s;
    animation-fill-mode: forwards;
}

.inactive-dx {
    animation-name: overshadowing-dx;
    animation-duration: 0.9s;
    animation-fill-mode: forwards;
}

.inactive-sx {
    animation-name: overshadowing-sx;
    animation-duration: 0.9s;
    animation-fill-mode: forwards;
}

.toast-message,
.toast-title {
    color: #000;
}

/* .modal-sm {
			width: 300px !important;
		} */

@keyframes overshadowing-dx {
    0% {
        z-index: 2;
        transform: perspective(100px) translate3d(0px, 0px, 0px);
        opacity: 1;
        box-shadow: 0 10px 50px 0 rgba(0, 0, 0, 0.25);
    }

    100% {
        z-index: 1;
        transform: perspective(100px) translate3d(100px, 0px, -30px);
        opacity: 0.5;
        box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.25);
    }
}

@keyframes overshadowing-sx {
    0% {
        z-index: 2;
        transform: perspective(100px) translate3d(0px, 0px, 0px);
        opacity: 1;
        box-shadow: 0 10px 50px 0 rgba(0, 0, 0, 0.25);
    }

    100% {
        z-index: 1;
        transform: perspective(100px) translate3d(-100px, 0px, -30px);
        opacity: 0.5;
        box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.25);
    }
}

@keyframes foregrounding-dx {
    0% {
        z-index: 1;
        transform: perspective(100px) translate3d(100px, 0px, -30px);
        opacity: 0.5;
    }

    50% {
        z-index: 2;
        transform: perspective(100px) translate3d(400px, 0px, -30px);
    }

    100% {
        z-index: 2;
        transform: perspective(100px) translate3d(0px, 0px, 0px);
        opacity: 1;
    }
}

@keyframes foregrounding-sx {
    0% {
        z-index: 1;
        transform: perspective(100px) translate3d(-100px, 0px, -30px);
        opacity: 0.5;
    }

    50% {
        z-index: 2;
        transform: perspective(100px) translate3d(-400px, 0px, -30px);
    }

    100% {
        z-index: 2;
        transform: perspective(100px) translate3d(0px, 0px, 0px);
        opacity: 1;
    }
}

.custom-margin {
    margin: 5px 0 !important;
}

input:focus {
    border: 3px solid green !important;
}

label.error,
label span.error {
    color: #e74c3c;
    margin: 5px 0 0 0;
    font-weight: 400;
}

label.error:before {
    content: "\f071";
    font-family: 'FontAwesome';
    margin: 0 4px;
}


.splash {
    position: fixed;
    z-index: 2000;
    background: white;
    color: gray;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    /* -webkit-animation: spin 2s linear infinite;
			animation: spin 2s linear infinite; */
}

.splash-title {
    text-align: center;
    max-width: 500px;
    margin: 15% auto;
    padding: 20px;
}