/* GLOBAL CSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

h1 {
    padding: 20px 20px 25px;
    text-align: center;
    font-size: 30pt;
}

p {
    padding: 10px;
}

/* Backgorund image */
.bg {
    background-image: url('../images/jb01.jpeg');
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
}

#container {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* FORM CSS */

#form {
    width: 60%;
    padding: 50px 10px;
    background-color: rgb(255 255 255 / 80%);
    border-radius: 20px;
    box-shadow: 1px 2px 10px 0px rgba(0, 0, 0, .5);
}

.success {
    background-color: rgb(39 187 39 / 80%) !important;
    color: #FFFFFF;
}

#form div {
    padding: 10px 0px;
    text-align: center;
}

#form p {
    padding: 10px 0px;
    text-align: center;
}

#form label {
    padding: 10px 0;
    font-weight: bold;
}

#form input {
    padding: 5px;
    width: 100px;
    height: 50px;
    text-align: center;
    color: black;
    background-color: white;
    font-size: 20pt;
}

#form .btn {
    padding: 10px;
    font-size: 12pt;
    color: white;
    background-color: #cd5be3;
    border-radius: 12px;
    border: none;
}

#form .btn:hover {
    background-color: #34183a;
    border: none;
}

/* ICONS */

i {
font-size: 24pt;
}

/* NOTIFICATIOS AND ERRORS */

div.welcome {
    text-align: center;
    position: absolute;
    top: 100px;
    width: 60%;
    padding: 20px 10px;
    background-color: rgb(255 255 255 / 80%);
    border-radius: 20px;
    box-shadow: 1px 2px 10px 0px rgba(0, 0, 0, .5);
}

p.hint {
    background-color: rgb(255, 191, 71);
    position: absolute;
    text-align: center;
    padding: 15px 10px;
    color: black;
    font-weight: bold;
    margin-bottom: 10px;
    border-radius: 10px;
    top: 160px;
}

p.error, p.success {
    position: absolute;
    text-align: center;
    padding: 15px 10px;
    color: black;
    font-weight: bold;
    margin-bottom: 10px;
    border-radius: 10px;
}

p.error {
    background-color: tomato;
}

p.success {
    background-color: rgb(39, 187, 39);
}

#crumble {
    position: absolute;
    bottom: 150px;
    background-color: white;
    width: 100%;
    text-align: center;
    padding: 10px;
}