* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #f0edf0;
    font-family: Arial, Helvetica, sans-serif;
}

.flex-container {
    display: flex;
    flex-wrap: nowrap;
    background-color: #fff;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.05), 0 6px 20px 0 rgba(0, 0, 0, 0.05);
}

.flex-container>div {
    /* background-color: #f1f1f1; */
    margin: 10px;
}

/* .col {
    padding: 15px;
} */

/* MARGIN */
.mb-1 {
    margin-bottom: 10px;
}

.mb-2 {
    margin-bottom: 20px;
}

.mt-2 {
    margin-top: 20px;
}

.mt-3 {
    margin-top: 30px;
}

/* PADDING */
.p-1 {
    padding: 10px;
}

.p-3 {
    padding: 30px;
}

.pb-1 {
    padding-bottom: 10px;
}

/* TEXT ALIGNMENT */
.text-center {
    text-align: center;
}

.text-end {
    text-align: end;
}

/* TEXT SIZES */
.smaller {
    font-size: smaller;
}

.small {
    font-size: small;
}

.medium {
    font-size: medium;
}

.large {
    font-size: large;
}

/* TEXT DECOR */
.text-reset {
    color: grey;
}
a:hover {
    color: black;
}
.font-lighter {
    font-weight: lighter;
}

/* FORM CONTAINER */
/* parent */
.form-container {
    position: relative;
}

/* child */
/* .form-control {
    position: absolute;
} */

input {
    width: 100%;
    border-width: thin;
    border-style: solid;
    border-radius: 5px;
    padding: 10px;
}

input[type="email"]:focus {
    border-width: thin;
    border-style: solid;
  }

.parent {
    background-color: #fff;
    position: relative;
    width: 75%;
    margin: auto;
}

/* SLIDER ANIMATION */
#child {
    height: 100%;
    width: 50%;
    transition: transform 1s cubic-bezier(0.59, 0.06, 0.38, 0.97);
    position: absolute;
    z-index: 1;
    background-color: #FADAD9;
    padding: 10%;
}

.right {
    transform: translateX(100%);
}

/* BUTTONS */
.button {
    border-style: none;
    padding: 10px 25px 10px 25px;
    border-radius: 20px;
    cursor: pointer;
}

/* SIGN IN FORM */
#left-login-btn {
    background-color: #E3B0AC;
    color: #fff;
    
}

#left-login-btn:hover {
    background-color: #FADAD9;
}

/* CREATE FORM */
#right-create-accnt-btn {
    background-color: #232E3D;
    color:#f1f1f1;
}

#right-create-accnt-btn:hover {
    background-color: #FADAD9;
    color: #232E3D;
}



/* Screen Sizes */
/* Extra-large screens, desktop */
@media screen and (min-width: 2560px) {
    .flex-container>div {
        width: 50%;
    }
}

/* Desktops, large screens */
@media screen and (min-width: 1800px) and (max-width: 2559px) {
    .flex-container>div {
        width: 50%;
    }
}

/* Medium screens, laptop */
@media screen and (min-width: 1025px) and (max-width: 1799px) {
    .flex-container>div {
        width: 50%;
    }
}

/*Small screens, laptops */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .flex-container>div {
        width: 50%;
    }
}

/*iPads, Tablets */
@media screen and (min-width: 481px) and (max-width: 768px) {
    .flex-container>div {
        width: 50%;
    }
}

/* Mobile Devices */
@media screen and (min-width: 320px) and (max-width: 480px) {
    .flex-container>div {
        width: 44.5%;
    }
}