body {
/*    font-family: 'Roboto', sans-serif;*/
    font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
    background-color: white;
    margin: 0;
    padding: 0;
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    position: relative;
}

.container {
    max-width: 800px;
    width: 100%;
    text-align: center;
}

.content {
    margin-top: 50px;
}

.logo {
    margin: 0px auto 25px;
    display: block;
    width:  306px;
}

img {
    max-width: 100%;
    height: auto;
}

h1 {
    font-weight: 700;
    font-size: 36px;
    /*font-size: 2.5rem;*/
}

p {
    /*font-size: 1.2rem;*/
    font-size: 16px;
    margin-bottom: 20px;
}

/* Login and Signup forms */
/*.login, .signup {*/
.login {
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    padding: 10px;
    position: absolute;
    background-color: white;
    width: 200px;
    font-size:12px;
}

/*.login {*/
/*    left: 20px;*/
/*}*/

/*.signup {*/
/*    right: 20px;*/
/*}*/

label {
    display: block;
    margin-bottom: 5px;
}

input[type="email"], input[type="password"] {
    width: calc(100% - 20px);
    padding: 6px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 12px;
}

button {
    padding: 8px 15px;
    /*background-color: #007bff; 00, 123, 255 */
    background-color: #7a1ab3; /* 122, 26, 179 */
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 12px;
    width: 100%;
}

button:hover {
/*    background-color: #0056b3;  00,  86, 179*/
    background-color: #55127d; /* 85, 18, 125 */
}
