
*{
    margin: 0;
    padding: 0;
    color: white;
}
h2{
    margin-top: 20px;
}

body{
    background: url(image1/bg-image.jpg);
}
.whole-form{

    display: flex;
    align-items: center;
    align-self: center;
    justify-content: center;
    background: url(image1/bg-form.png);
    height: 500px;
}

.header-container{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 25%;

}
.header-container img{
    margin: 0 auto;
    width: 120px;
    height: 120px;
}
.main-container{
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
}
.form-container{
    min-width: 350px;
    width: 350px;
    height: 500px;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 2fr;
    justify-items: center;
    text-align: center;
    row-gap: 30px;
}

.data-container{
    width: 100%;
}

.data-container form{
    width: 100%;

    display: grid;
    row-gap: 20px;
}
.input-place > input{
    width: 60%;
    padding-left: 10px;
    height: 40px;
    border-radius: 2px;
    border: none;
    background-color: rgb(56,56,56);
}

.input-place > input::placeholder{
    color: rgb(57, 198, 198);
    border: none;
}
.input-place > input[type="text"]:hover{
    transform: scale(1.01);
    transition: 0.2s ease-in-out;
}
.input-place > input[type="password"]:hover{
    transform: scale(1.01);
    transition: 0.2s ease-in-out;
}
#main-form{
    width: 100%;
    display: grid;
    grid-template-rows: 1fr 1fr 0.8fr;
}
.input-place{
    display: flex;
    justify-content: center;
    align-items: center;
}
.input-place img{

    width: 35px;
    height: 35px;
}
.gray-line{
    padding: 0;
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    background-color: rgb(90,90,90);
}
.autho-system{
    width: 72.5%;
    margin: 0 auto;
    height: 40px;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.img-container{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 5px;
    background-color: rgb(90,90,90)
}

.autho-system input[type="submit"]{
    width: 30%;
    height: 35px;
    margin: 0 0 0 auto;
    background-color: rgb(7,192,186);
    border: none;
    border-radius: 2px;
}
.autho-system input[type="submit"]:hover{
    background-color: rgb(4, 148, 143);
    cursor: pointer;
}

.autho-system span{
    text-decoration: none;
    margin-left: 5px;
    font-size: 16px;
}
.reg-panel{

    width: 72.5%;
    margin: 0 auto;
   display: flex;
   justify-content: space-around;
}
.reg-panel a{
    color: rgb(57, 198, 198);
    text-decoration: none;
}
.reg-panel a:hover{
    color: white;
}

.schedule-containter{
    margin-top: 30%;
    display: grid;
    grid-template-rows: 0.5fr 0.5fr 1.5fr 1fr;
    justify-items: center;
    width: 350px;
    min-width: 350px;
    text-align: center;
    height: 500px;
}
.schedule-containter img{
    width: 120px;
    height: 120px;
}

.schedule-for{
    margin: 10px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    font-size: 24px;
}

.schedule-for button{


    margin: 20px 20px 0px 30px;
    background-color: rgb(7,192,186);
    height: 35px;
    width: 50%;
    border: none;
    border-radius: 2px;
}

.schedule-for button:hover{
    background-color: rgb(4, 148, 143);
    cursor: pointer;
}
.extra-items{
    width: 100%;
}

.extra-items a{
    text-decoration: 0;
    color: rgb(57, 198, 198);
}
.extra-items a:hover{
   color: white;
}
.extra-items p{
    width: 100%;
    font-size: 18px;
}
.extra-items p:nth-child(1){
    margin-top: 30px;
}
.extra-items p:last-child{
    margin-top: 27px;
}
