body {
    background-image: linear-gradient(rgba(115, 135, 193, 0.5), rgba(115, 135, 193, 0.5)),url('../../../assets/images/background_2.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    margin: 0;
    padding: 0;
}
form {
    width: 30%;
    height: 500px;
    display: flex;
    flex-direction: column;
    margin: auto;
    padding-top: 50px;
    padding-bottom: 20px;
    color: white;
    background-color: rgba(183, 198, 223, 0.69);
    border-radius: 10px;
    margin-top: 100px;
    font-family: Arial;
    text-align: center;
}

form > h1 {
    font-size: 35px;
    font-family: "Courier New";
    font-weight: 100;
}

input {
    width: 80%;
    color: white;
    font-size: 17px;
    height: 40px;
    margin: auto;
    background-color: rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.56);
    border-radius: 4px;
    padding-left: 10px;
    outline: none;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.2);
    &::placeholder {
        color: #d5d5d5;
    }
}

#resetPassword {
    /*border: 1px solid red;*/
    width: 82%;
    text-decoration: underline;
    cursor: pointer;
    height: 42px;
    margin: auto;
    text-align: left;
}

#submitBtn {
    background-color: white;
    color: black;
    cursor: pointer;
    width: 83%;
    box-shadow: none;
    &:hover {
        background-color: #ededed;
        border-color: #d5d5d5;
    }
    &:focus {
        background-color: #e4e4e4;
    }
}

#otherOption {
    height: 110px;
    margin-top: 50px;
}

#or {
    width: 80%;
    border-top: 1px solid white;
    margin: auto;
}

#createAccount {
    width: 80%;
    margin: auto;
    height: 40px;
    background-color: rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.56);
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    cursor: pointer;
    &:hover {
        background-color: rgba(28, 28, 28, 0.12);
    }
}