body {
    background-color: #ffecc2;
    font-size: 14px;
    font-family: poppin, sans-serif;
}

a, a:hover {
    color: #ff5101;
}

.auth-wrap {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    display: -webkit-flex;
    display: -ms-flexbox;
    justify-content: center;
    align-items: center;
}
.auth-body {
    width: 300px;
}
.auth-header {
    margin-bottom: 30px;
}
.auth-header h2 {
    font-weight: normal;
    letter-spacing: 1px;
    font-size: 2.3rem;
    color: #f36f23;
}
.auth-header p {
    letter-spacing: 2px;
    color: rgba(0,0,0,0.6);
}
.auth-content {
    background-color: #fff;
    padding: 25px 20px 15px;
    margin-bottom: 30px;
    border-radius: 3px;
    border-radius: 5px;
}
.form-group label {
    font-size: 13px;
    color: rgba(0,0,0,0.4);
    letter-spacing: 0.5px;
    font-weight: 500;
}
.form-input {
    width: 100%;
    border: 0;
    border-bottom: 3px solid #ddd;
    outline: none;
    padding: 7px 5px;
    transition: all 300ms ease;
}
.form-input:focus {
    border-color: #ff7d32;
}

.forgot {
    position: relative;
    top: -10px;
}
.btn {
    border-radius: 5px;
    padding: 7px 10px;
    font-weight: 500;
    width: 100%;
}
.btn-auth:focus {
    box-shadow: 0 0 0 4px rgba(255, 81, 1, 0.2);
}
.btn-auth {
    background-color: #ff6f01;
    color: #fff;
}
.btn-auth:hover {
    color: #fff;
    opacity: 0.8;
}

.auth-footer {
    color: #444;
    font-size: 15px;
}

.auth-footer a {
    color: #db6505;
}
