@import url('../css/header.css');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
body {
    background-image: url('../img/index-background.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    margin: 5px auto 5px;
    text-align: center;
    width: 100%;
}
h1 {
    color: #fff;
    font-family: 'Open Sans', serif;
    font-size: 2rem;
}
label {
    width: 100%;
    display: inline-block;
    text-align: left;
    font-size: 0.8rem;
    font-family: 'Open Sans', serif;
}
input {
    background: transparent;
    border: 1px solid rgba(204, 204, 204, 0.6);
    border-radius: 15px;
    color: #fff;
    font-size: 0.8rem;
    font-weight: 100;
    font-family: 'Open Sans', serif;
    padding: 10px;
    height: 1.75rem;
    width: 100%;
}
input::placeholder {
    color: #fff;
    opacity: 0.9;
}
.input-icon {
    position: absolute;
    margin-top: 5px;
    right: 30px;
    color: #fff;
}

.fa-search {
    position: absolute;
    top: 0;
    right: 10px;
    bottom: 0;
}

form {
    margin: 25px 10px;
    padding: 20px;
    border: 1px solid rgba(204, 204, 204, 0.4);
    border-radius: 5px;
    width: auto;
    background: transparent;
    position: relative;
}
div.form-element {
    margin: 20px 0;
}
button {
    padding: 6px 30px;
    font-size: 0.6rem;
    font-family: 'Open Sans', serif;
    font-weight: 100;
    background: rgba(255, 255, 255, 1);
    color: #000;
    border: 1px solid rgba(204, 204, 204, 0.3);
    border-radius: 15px;
    cursor: pointer;
    margin: 25px 5px;
}
p.success,
p.error {
    color: white;
    font-family: 'Open Sans', serif;
    background: yellowgreen;
    display: inline-block;
    padding: 2px 10px;
}
p.error {
    background: orangered;
}

#toast-container > div {
    width: 220px !important;
}

#toast-container > .toast-success {
    background-size: 15px;
}

.toast-message {
    font-family: 'Open Sans', serif;
    font-size: 0.7rem;
}

/* Generic */
/* container */
.responsive-three-columns {
    display: flex;
    flex-wrap: wrap;
}

/* columns */
.responsive-three-columns > * {
    width: 100%;
    padding: 1px;
}

/* For Desktop View */
@media screen and (min-width: 1024px) {
}

@media screen and (min-width: 768px) {
    .responsive-three-columns > * {
        width: calc(100% / 3);
    }
}
