* {
    margin: 0;
    padding: 0;
}

body {
    background:white;
    font-size: 16px;
    font-family: 'Mulish', Arial, Helvetica, sans-serif;
    margin: auto;
}

.container-fluid {
    width: 90%;
}

.container {
    /* border: 1px solid green; */
    width: 100% !important;
    max-width: 1366px !important;
    margin-left: auto;
    margin-right: auto;
}

/* .row {
    border: 1px solid blue;
}

.col {
    border: 1px solid red;
} */

#sign-in-row {
    border: 1px solid #E0E0E0;
    box-sizing: border-box;
    margin-left: auto;
    margin-right: auto;
    margin-top: 10vh;
    margin-bottom: 10vh;
    min-height: 610px;
    max-width: 1142px;
    border-radius: 12px;
}

#sign-in-left-col {
    background: #7D539F;
    border-radius: 12px 0 0 12px;
}

form {
    margin: 80px 72px 80px 72px;
}

.form-control {
    height: 44px;
    border-radius: 8px;
    outline: none;
    color: #333333;
}

#name {
    margin-bottom: 24px;
}

.form-group {
    padding: 0;
}

#inputPassword {
    margin-top: 24px;
}

input[type="email"]:focus,
input[type="text"]:focus,
input[type="password"]:focus {
    background: #FFFFFF;
    border: 1px solid #2D9CDB;
}

.btn {
    min-height: 44px;
    border-radius: 8px;
    font-weight: bold;
    font-size: 16px;
    line-height: 20px;
    outline: none !important;
}

.buttonPurple {
    background: #602A82;
    color: white;
    transition: box-shadow .5s;
}

.buttonPurple:hover {
    box-shadow: 0px 8px 24px rgba(96, 42, 130, 0.16);
    color: white;
}

.buttonWhite {
    background: white;
    border: 1px solid #E0E0E0;
    box-sizing: border-box;
    color: #4F4F4F;
    transition: box-shadow .5s;
}

.buttonWhite:hover {
    box-shadow: 0px 8px 24px rgba(79, 79, 79, 0.16);
    color: #4F4F4F;
}

.txt-1 {
    font-size: 16px;
    line-height: 20px;
    text-align: center;
    color: #828282;
    margin: 16px 0 16px 0;
}

.txt-2 {
    font-size: 16px;
    line-height: 20px;
    text-align: center;
    color: #4F4F4F;
}

.txt-3 {
    font-size: 12px;
    line-height: 15px;
    text-align: center;
    color: #4F4F4F;
}

.form-group p a {
    color: #333333;
    font-weight: bold;
    text-decoration: none;
}

@media only screen and (max-width: 576px) {
    form {
        margin: 80px 20px 80px 20px;
    }
}