h1 {font-weight: 600;margin-bottom: 20px;}
.auth-container {
    min-height: calc(100vh - 60px);
    margin-top: 60px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    & .form {
        margin-top: 120px;
        width: 470px;
        border-radius: 17px;
        padding: 25px;
        box-shadow: 0 0 2px 1px #e8e8e8;
    }
    & .input-container {
        display: flex;
        align-items: center;
        margin-bottom: 14px;
        & input {
            flex: 1;
            border: 1px solid #d3d3d3;
            padding: 10px;
            font-size: 15px;
            border-radius: 7px;
            outline: none;
            &:focus,&:hover {border-color: #353535;}
        }        
    }
    & button.submit {
        border: 0;
        width: 100%;
        height: 42px;
        padding: 0 20px;
        font-size: 16px;
        font-weight: 600;
        border-radius: 7px;
        background-color: rgb(233 76 59);
        color: #fff;
        opacity: 0.7;
    }
    & button.submit.active {
        opacity: 1;
        cursor: pointer;
    }
}