•⁠ ⁠ {
    box-sizing: border-box; /*fixed size=width including padding,border..*/
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI',sans-serif, Cambria;
}
body{
    background-color:#F9F5E7;
}
body, html {
    height: 100%;
}

.background {
    background: url("../photos/bg.jpg") no-repeat center center fixed;
    /*no-repeat>only one copy of the image will appear.*/
    /*center center>image in the horizontal and vertical center of the element.*/
    /*fixed>background stay in place when scrolling.*/
    background-size: cover;
    height: 100vh; /*100% of the viewport height*/
    display: flex;
    justify-content: center; /*horizontally*/
    align-items: center; /*vertically*/
}

.login-box {
    background: #F9F5E7;
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    color: #4E2209;
    width: 300px;
    box-shadow: 0 0 10px rgba(255,255,255,0.2);
}

.login-box input[type="text"],
.login-box input[type="password"]
{
    width: 100%;
    padding: 10px;
    margin: 8px 0;
    border: none;
    border-radius: 5px;
}

.login-box button {
    width: 100%;
    padding: 10px;
    margin-top: 10px;
    border: none;
    background: #C6A196;
    color: white;
    font-weight: bold;
    cursor: pointer; /*changes the mouse cursor to a hand icon (👆) when hovering*/
    border-radius: 5px;
}

.login-box .social-login {
    display: flex;
    justify-content: space-between;
    margin-top: 5px;
}

.facebook {
    background: #3b5998;
    color: white;
    flex: 1;
    margin-right: 5px;
}

.twitter {
    background: #1da1f2;
    color: white;
    flex: 1;
    margin-left: 5px;
}

.signup-box {
    background: #F9F5E7;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    color: #4E2209;
    width: 500px;
    box-shadow: 0 0 10px rgba(255,255,255,0.2);
}

.signup-box input,
.signup-box select,
.signup-box textarea
{
    padding: 7px;
    margin: 4px 0;
    border: none;
    border-radius: 5px;
}

input::placeholder,
textarea::placeholder,
input[type="date"],
select, button,
input[type="file"] {
    color: #4E2209;

}

a:link,a:visited {
    color: #C6A196;
    transition: 0.3s;
}
a:hover {
    color: #4E2209;
    font-size:110%;
    transition:0.3s;
}

/*For the password strength indicator*/
.password-wrapper {
    /*width: 200px;*/
    width: 100%;
    max-width: 400px;
    margin-top: 10px;
    margin-bottom: 20px;
    margin: 10px auto 20px auto;
}

.strength {
    width: 60%;
    height: 4px; 
    background: #F9F5E7;
    border: 2px solid #4E2209;
    border-radius: 10px;
    margin: 0 auto; /*Bar at the center*/
    overflow: hidden;
}

#strengthValue {
    height: 100%;
    width: 0%;
    /*min-width: 1px;*/
    border-radius: 10px;
    background-color: #4E2209;
    transition: width 0.4s ease;
}

#strengthText {
    width: 60%;
    margin-top: 5px;
    color: #4E2209;
    font-size: 13px;
    font-weight: normal;
    text-align: left;
    margin: 4px auto 0 auto;
}