*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    background: #0B6730;
    font-family: Verdana;
}

form {
    width: 24%;
    background-color: #fff;
    padding: 50px;
    border-radius: 20px;
    margin-top: 150px;
}

.btn-primary {
    width: 100%;
    border: none;
    border-radius: 50px;
    background: #228B22;
}

.form-control {
    color: rgba(0, 0, 0, .87);
    border-bottom-color: rgba(0,0,0,.42);
    box-shadow: none !important;
    border: none;
    border-bottom: 1px solid;
    border-radius: 4px 4px 0 0;
    padding-left: 0;
}

h4 {
    font-size: 2rem !important;
    font-weight: 700;
}

.form-label {
    font-family: 800 !important;
}

.psw input {
    border-bottom: none;
}

.pwd {
    display: flex;
    border-bottom: 1px solid;
}

@media(max-width: 1024px) {
    form {
        width: 50%;
    }
    .mx-auto{
        margin-top: 150px;
        margin-bottom: 150px;
    }
}

@media(max-width:600px) {
    form {
        width: 100% !important;

    }

    .mx-auto{
        margin-top: 70px;
    }
}