body {
    margin: 0;
    padding: 0;
    font-size: 16px;
    line-height: 20px;
    font-family: "Roboto", sans-serif;




}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    padding: 0;
    margin: 0;
}

.log-image img {
    width: 100%;

    object-fit: cover;


}

.log-main-box {
    margin: 6px 0;
    overflow: hidden;
}

.log-content {
    background-color: rgb(255, 255, 255);
    width: 100%;
    height: 100%;
    margin: 40px 0;
}

.log-content .log-heading {
    text-align: center;
}

.log-content .log-heading h2 {
    color: #4f18a8;
    font-size: 45px;
}

.log-content .log-heading span {
    color: black;
}
.form-box{
    padding: 30px;
}
.form-box input{
    width:100%;
    padding: 12px 0;
    border: none;
    outline: none;
    border-bottom: #5b5b5b 1px solid;
}
.form-box label{
    font-size: 16px;
    font-weight: bold;
    color: rgb(19, 19, 19);
}
.password{
    margin: 20px 0;
}
.forget-flex{
    display: flex;
    gap: 10px;
    align-items: center;
}
.forgot-bx p{
    color: #4f18a8;
    cursor: pointer;
    text-align: right;
}
.login-btn{
    padding: 20px 0;
}
.login-btn button{
  background: linear-gradient(#746bed, #1F1B53);
    border-radius: 15px;
    padding:  15px;
    color: #fff;
    width: 100%;
    border: none;
    outline: none;
}
.dont-have-an-account{
    padding: 20px 0;
}
.dont-have-an-account p{
    color: #212121;
    text-align: center;
}
.dont-have-an-account span{
    color: #4f18a8;
    font-weight: 600;
    cursor: pointer;
}

@media(max-width:992px) {
    .log-image {
        display: none;
    }
}

@media(max-width:450px) {
    .log-content .log-heading h2 {

        font-size: 25px;
    }
    .log-content .log-heading p{
        font-size: 14px;
    }
    .form-box{
    padding: 15px;
}
.forget-flex p{
    font-size: 14px;
}
.forgot-bx p{
      font-size: 14px;
}
.dont-have-an-account span{
    color: #4f18a8;
    font-weight: normal;
    cursor: pointer;
}
}