.image-container{
    background: url('images/patel.jpeg') center no-repeat;
    background-size: cover;
    height: 100vh;
}

.form-block{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

.form-box{
    border: 2px solid #e55940;
    border-top-left-radius: 100px;
    border-bottom-right-radius: 100px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-box h4 {
    font-weight: bold;
}

.form-box .form-input {
    position: relative;
}

.form-box .form-input input {
    width: 100%;
    height: 40px;
    margin-bottom: 20px;    
    box-sizing: border-box;
    box-shadow: none;
    border: 1px solid #ffe0da;
    border-radius: 40px;
    outline: none;
    color: black;
    background: transparent;   
    padding-left: 40px;
}

.form-box .form-input span {
    position: absolute;
    top: 8px;
    padding-left: 15px;
    color: #ff6347;
}

.form-box .form-input input::placeholder {
    color: black;
    padding-left: 0px;
}

.form-box .form-input input:focus,
.form-box .form-input input:valid {
    border: 2px solid #ff6347;
}

.form-box .form-input input:focus::placeholder {
    color: #454b69;
}

.custom-checkbox .custom-control-input:checked ~ .custom-control-label::before {
  background-color: #e55940 !important;
  border:0px;
}

.form-box button[type="submit"] {
    margin-top: 10px;
    border: none;
    cursor: pointer;
    border-radius: 20px;
    background: linear-gradient(45deg, #e55940, #fb8a76);
    color: #fff;
    font-weight: bold;
    transition: 0.5s;
}

.form-box button[type="submit"]:hover {
    background: linear-gradient(45deg, #fb8a76, #e55940);
}

.forget-link , .login-link , .register-link {
    color: #fb8a76;
    font-weight: bold;
}

.forget-link:hover , .login-link:hover , .register-link:hover {
    color: #e55940;
    text-decoration: none;
}

.form-box .btn-social {
    color: white;
    border: 0;
}

.form-box .btn-facebook {
    background: #4866a8;
}

.form-box .btn-google {
    background: #da3f34;
}

.form-box .btn-twitter {
    background: #33ccff;
}

.form-box .btn-facebook:hover {
    color: white;
    background: hsla(221, 40%, 40%, 1);
}

.form-box .btn-google:hover {
    color: white;
    background: hsla(4, 59%, 47%, 1);
}

.form-box .btn-twitter:hover {
    color: white;
    background: hsla(195, 78%, 54%, 1);
}