@font-face {
	font-family: "dorovar";
	src: url("../font/DorovarFLF-Carolus.ttf");
}
@font-face {
	font-family: "baldur";
	src: url("../font/Baldur.ttf");
}
@font-face {
	font-family: "Behrensschrift";
	src: url("../font/Behrensschrift.ttf");
}

:root{
    --beige: #9F9378;
    --disabled: #BFB9A9;
}

body {
    background-image: url("../pict/wallpaper.jpg");
    background-size: cover;
    margin: 0;
    display: flex;
    justify-content: center;
  }

.splashscreen{
    margin-top: 100px;
    width: 550px;
    height: 600px;
    background-color: var(--beige);
    border: none;
    outline: none;
    border-radius: 10px;
    box-shadow:
        0px 2px 10px rgba(0,0,0,0.2),
        0px 10px 20px rgba(0,0,0,0.3),
        0px 30px 60px 1px rgba(0,0,0,0.5);
}   

.border{
    border: 1px solid black;
}

.title {
    /*border: 1px solid black;*/
    width: 100%;
    height: 250px;
    color: white;
    font-family: "dorovar";
    font-size: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.text-log{
    color: white;
    font-family: "baldur";
    font-size: 20px;
    display: flex;
    align-items: center;
    margin-left: 50px;
}

.switch-btn{
    padding: 0 50px;
    width: 100%;
    height: 80px;
    display: flex;
    align-items: center;
}
.switch-btn .button{
    width: 80px;
    height: 24px;
    background-color: transparent;
    font-family: "baldur";
    font-size: 15px;
    color: white;
    border: 1px solid white;
    border-radius: 4px;
    cursor: pointer;
}

#login-swtchBtn{
    color: white;
    border-color: white;
    transition: 0.3s ease-in-out;
}

#login-swtchBtn:hover{
    background-color: white;
    color: var(--beige);
    border-color: white;
}

#login-swtchBtn.disabled{
    color: var(--disabled);
    border-color: var(--disabled);
    transition: 0.3s ease-in-out;
}

#register-swtchBtn{
    margin-left: 24px;
    color: white;
    border-color: white;
    transition: 0.3s ease-in-out;
}

#register-swtchBtn:hover{
    background-color: white;
    color: var(--beige);
    border-color: white;
}

#register-swtchBtn.disabled{
    color: var(--disabled);
    border-color: var(--disabled);
    transition: 0.3s ease-in-out;
}

.form{
    padding: 0 50px;
    height: 140px;
    /*border: 1px solid red;*/
    /*display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: space-between;*/
}

.form .inputFieldR{
    width: 100%;
    display: flex;
    justify-content: center;
    max-height: 0px;
    box-shadow: 0px 2px 0px 0px white;
    outline: none;
    overflow: hidden;
    transition: max-height 0.5s ease-in-out;
}

.form .inputFieldL{
    width: 100%;
    display: flex;
    justify-content: center;
    max-height: 100px;
    box-shadow: 0px 2px 0px 0px white;
    outline: none;
    overflow: hidden;
}

.form input{
    margin: 2px 0;
    width: 100%;
    height: 25px;
    background-color: transparent;
    color: white;
    border: none;
    outline: none;
    /*border: 1px solid blue*/
}

.form input::placeholder{
    color: var(--disabled);
}

.form .forgetPass{
    max-height: 100px;
    padding-top: 10px;
    text-align: right;
    overflow: hidden;
    transition: 0.2s ease-in-out;
    box-shadow: none;
    justify-content: right;
}

.form .forgetPass a{
    color: white;
    font-family: "baldur";
    font-size: 12px;
}

.btn-validate{
    padding: 30px 50px;
    /*border: 1px solid red;*/
    display: flex;
    justify-content: right;
    /*transition: display 0.5s ease-in-out;*/
}

#btn-Play{
    width: 125px;
    height: 40px;
    background-color: transparent;
    font-family: "baldur";
    font-size: 22px;
    color: white;
    border: 1px solid white;
    border-radius: 4px;
    cursor: pointer;
    overflow: hidden;
    display: block;
}

#btn-Register{
    width: 125px;
    height: 40px;
    background-color: transparent;
    font-family: "baldur";
    font-size: 22px;
    color: white;
    border: 1px solid white;
    border-radius: 4px;
    cursor: pointer;
    overflow: hidden;
    display: none;
}

#btn-Play:hover{
    background-color: white;
    color: var(--beige);
}

#btn-Register:hover{
    background-color: white;
    color: var(--beige);
}