.container1{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100vw;
    min-height: 100vh;
    padding: 15px;
}


.left{
    width: 45vw;
    display: flex;flex-direction: column;
    align-items: center;
    min-height: 96vh;
    padding: 30px 10px;
    justify-content: space-between;
}

.top{
    display: flex;
    align-items: center;
    gap: 10px;
}

.top img{
    width: 40px;
    animation: move 10s infinite ease alternate;
}

.logo-name{
    text-transform: uppercase;
}

.middle{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    justify-content: space-between;
    min-height: 45vh;
    /* width: 25vw; */
}

.welcome{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
}

.welcome .heading{
    font-family: montSemi;
    font-size: 45px;
    color: black;
    text-transform: capitalize;
}

.welcome .sub-heading{
    font-family: montMid;
    font-size: 16px;
    text-align: center;
    color: #424141;
    width: 70%;
}

.form{
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 36vh;
    justify-content: space-between;
    width: 100%;
    gap: 20px;
}

.input{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    width: 100%;
}

.input label{
    font-family: montBold;
    font-size: 16px;
    color: #515151;
    text-transform: capitalize;
}

.error{
    font-family: ralewayBold;
    color: red;
    text-transform: capitalize;
    font-size: 16px;
    text-align: center;
}
input{
    width: 100%;
    height: 55px;
    border-radius: 5px;
    font-family: montMid;
    color: #2a2a2a;
    font-size: 16px;
}

input[type=email], input[type=password], input[type=text]{
    border: 1px solid #909090;
    padding-left: 10px;
}

input::placeholder{
    font-family: montMid;
    font-size: 16px;
    color: #797777;
}

.input a{
    font-family: montBold;
    font-size: 14px;
    text-transform: capitalize;
    color: #424141;
}

input[type=submit]{
    background-color: var(--primary);
    border: none;
    outline: none;
    font-family: montBold;
    color: white;
    font-size: 16px;
    text-transform: capitalize;
}

.submit{
    background-color: #b4c3e7;
    border: none;
    outline: none;
    font-family: montBold;
    color: white;
    font-size: 16px;
    text-transform: capitalize;
    width: 100%;
    display: flex;
    align-items: center;justify-content: center;
    border-radius: 5px;
    height: 50px;
    cursor: default;
}

.submit1{
    background-color: #1A5AFF;
    border: none;
    outline: none;
    font-family: montBold;
    color: white;
    font-size: 16px;
    text-transform: capitalize;
    width: 100%;
    display: flex;
    align-items: center;justify-content: center;
    border-radius: 5px;
    height: 50px;
    cursor: default;
    display: none;
}
.right img{
    width: 50vw;
    min-height: 96vh;
}

.bottom p{
    text-align: center;
    font-family: montMid;
    font-size: 14px;
}

.bottom p a{
    font-family: montBold;
}

@media screen and (max-width: 768px){
    .container1{
        align-items: center;
        justify-content: center;
    }
    .right{
        display: none;
    }
    .logo-name{
        font-size: 14px;
    }
    .left{
        width: 80vw;
    }
    .top{
        flex-direction: column;
    }
    .welcome .heading{
        font-size: 37px;
    }
    .welcome .sub-heading{
        font-size: 14px;
        width: 100%;
    }
    .form .input label{
        font-size: 14px;
    }
    .form input{
        font-size: 14px;
    }
    .form input::placeholder{
        font-size: 14px;
    }
    .form .input a{
        font-size: 12px;
    }
    .form input{
        height: 48px;
    }
    .bottom p{
        text-align: center;
        font-family: montMid;
        font-size: 12px;
    }

}