.login-container{
    margin: 2rem;
    background-color: rgb(184, 184, 255);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.438);
    padding: 2rem;
    width: 1000px;
    /* height: 100vh; */
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}
.doddle{
    flex-basis: 60%;
    /* background-color: brown; */
    display: flex;
    justify-content: center;
    align-items: center ;
    img{
        max-width: 500px;
    }
}
.account-form{
    flex-basis: 40%;
    flex-grow: 1;
    /* background-color: rgb(32, 32, 32); */
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
} 
.login-logo{
    width: 100px;
    margin: auto;
    img{
        width: 100%;
    }
}
 .btn{
    flex-grow: 1;
}  
.form-heading{
    font-family: sans-serif;
    color: white;
    text-align: center;
}
.input-box{
    width: 100%;
}
.input-name{
    display: flex;
    justify-content: space-between;
}
input{
    border: none;
    border-bottom: 1px solid white;
    background-color: transparent;
    padding: 5px;
    width: 100%;
    color: white;
}
label{
    color: white;
    text-transform: capitalize;
    font-weight: 600;
}
.other{
    margin-top: 1rem;
    color: white;
}
.forgot{
    color: white;
    cursor: pointer;
}
.signup-link{
    color: rgb(0, 30, 255);
    font-size: 1.2rem;
}

.blog-img-preview{
    max-width: 300px;
    width: 100%;
}
