form {
    border: 0px solid #438a75;
}

input[type=text],
input[type=password] {
    width: auto;
    padding: 12px 20px;
    margin: 8px 0;
    display: inline-block;
    border: 1px solid #438a75;
    box-sizing: border-box;
    width: 60%;
    
}

button span {
    cursor: pointer;
    display: inline-block;
    position: relative;
    transition: 0.5s;
}

button span:after {
    content: '\00bb';
    position: absolute;
    opacity: 0;
    top: 0;
    right: -20px;
    transition: 0.5s;
}

button:hover span {
    padding-right: 25px;
}

button:hover span:after {
    opacity: 1;
    right: 0;
}

.container {
    padding: 10px;
}

span.psw {
    float: right;
    padding-top: 10px;
}

/* Change styles for span and cancel button on extra small screens */

@media screen and (max-width: 300px) {
    span.psw {
        display: block;
        float: none;
    }
    .cancelbtn {
        width: auto;
    }
}

button {
    display: inline-block;
    border-radius: 4px;
    background-color: #438a75;
    border: none;
    color: #438a75;
    text-align: center;
    font-size: 18px;
    padding: 20px;
    width: 60%;
    transition: all 0.5s;
    cursor: pointer;
    margin: 8px;
}

.button4 {
    background-color: #D9D9D9;
    color: black;
}

/* Gray */