@font-face {
	font-family: 'ObjectSans';
	font-style: normal;
	font-weight: bold;
	font-display: auto;
	src: url('../fonts/ObjectSans-Bold.eot');
	src: url('../fonts/ObjectSans-Bold.eot?#iefix') format('embedded-opentype'),
		url('../fonts/ObjectSans-Heavy.woff2') format('woff2'),
		url('../fonts/ObjectSans-Heavy.woff') format('woff'),
		url('../fonts/ObjectSans-Bold.ttf') format('truetype');
}
@font-face {
	font-family: 'ObjectSans';
	font-style: normal;
	font-weight: normal;
	font-display: auto;
	src: url('../fonts/ObjectSans-Regular.woff2') format('woff2'),
		url('../fonts/ObjectSans-Regular.woff') format('woff'),
		url('../fonts/ObjectSans-Regular.ttf') format('truetype');
}


*{
    padding: 0%;
    margin: 0%;
    transition:.3s all;
}

html{
    font-size: 1.5vmin; 
    line-height: 1.15;
}

body{
    background-color: black;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    font-family: "ObjectSans", Sans-serif;
}

.logo{
    position:fixed;
    top:25px;
    left:85px;
    width:125px;
    display:block;
}

@media (max-width: 1024px){
    .logo{
        top:30px;
        left:35px;
    }
}

@media (max-width: 767px){
    .logo{
        top:15px;
        left:8px;
        width:85px;
    }
}

.wrapper{
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

form{
    text-align: center;
    max-width: calc((100vw - 25rem) * 0.33);
    min-width: 500px;
    margin: auto;
    font-size: 1.5rem;
    line-height: 1.4;
}

@media (max-width: 767px){
    form{
        width: 100vw;
        min-width: 100vw;
    }
}

.pw, input{
    margin-bottom: 2rem;
    text-align: center;
    width: 78%;
    border: none;
    border-radius: 4rem;
    padding: 1.2rem 2.33rem 1.2rem 2.33rem;
    font-size: inherit;
    line-height: inherit;
    min-height: 40px;
    background-color: #2a2a2a;
    color: #f7f7f7;
    font-family: inherit;
    font-size:inherit;
    box-sizing: border-box;
    outline:0;
}

.submit {
    cursor: pointer;
    color: white;
    font-weight: bold;
    outline: 0;
    background: linear-gradient(90deg, #ec7673, #b25aa0 41.8%, #5a57b3 66.5%, #5552a9 82.9%, #36346b);
   transition: all .3s;
}

.submit:hover{
  transform: scale(0.98)
}

.password-wrong-message{
    margin-bottom: 2rem;
    color: red;
    display: none;
}

.password-wrong-message.show{
    display: inline-block;
}
