html,
body {
    margin: 0;
    padding: 0;
    font-family: "Rubik", sans-serif;
    background-color: #eef0f4;
    user-select: none;
}

.login-container {
    border: 1px solid gray;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    max-width: 320px;
    margin: 30px auto;
    align-items: center;
    padding: 20px;
    box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.2);
    justify-content: space-evenly;
}

.input-group {
    color: inherit;
    width: 100%;
    background-color: transparent;
    border: none;
    padding-left: 1.5rem;
    font-size: 1rem;
}
.input-group {
    padding: 1% 0;
    position: relative;
}

.input-group i {
    position: absolute;
    color: black;
}

.input-group::placeholder {
    color: transparent;
}

.btn {
    font-size: 1.1rem;
    padding: 8px 0;
    border-radius: 5px;
    outline: none;
    border: none;
    width: 100%;
    background: #d78c6c;
    color: white;
    cursor: pointer;
    transition: 0.9s;
}
.btn :hover {
    background: #af7258;
}
.or {
    font-size: 1.1rem;
    margin-top: 0.5rem;
    text-align: center;
}

.links {
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 100%;
    font-weight: bold;
}

#signUpButton,
#signInButton {
    color: #d78c6c;
    border: none;
    background-color: transparent;
    font-size: 1rem;
    font-weight: bold;
}

#signUpButton:hover,
#signInButton:hover {
    text-decoration: underline;
    color: #be7b5f;
}

.container {
    display: flex;
    flex-direction: column;
    max-width: 320px;
    margin: 30px auto;
    visibility: collapse;
}

img {
    width: 200px;
    margin: 0 auto;
}

input {
    color: #432000;
    background-color: #dce1eb;
    border: 0;
    padding: 15px;
    border-radius: 8px;
    font-size: 20px;
    text-align: center;
    font-family: "Rubik", sans-serif;
    margin: 10px 0;
    width: 100%;
    box-sizing: border-box;
    box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.2);
}

#add-button {
    color: #fdfdfd;
    background-color: #d78c6c;
    border: 0;
    padding: 15px;
    border-radius: 8px;
    font-size: 20px;
    text-align: center;
    font-family: "Rubik", sans-serif;
    width: 100%;
    box-sizing: border-box;
    box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.2);
}

#add-button:hover {
    cursor: pointer;
    background-color: #05ac9c;
}

ul {
    list-style-type: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

ul li {
    font-size: 20px;
    background-color: #fff4ef;
    padding: 15px;
    border-radius: 8px;
    flex-grow: 1;
    text-align: center;
    box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transform: translateX(-10px);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

ul li:hover {
    background-color: #e7e6e6;
    cursor: pointer;
}

ul li.animate {
    opacity: 1;
    transform: translateX(0);
}

.errorMsg {
    margin: 5vh 5vw;
    border-radius: 25px;
    display: flex;
    flex-grow: 1;
    justify-content: center;
    font-size: 18px;
}

#hint-el {
    background-color: rgb(250, 236, 236);
    border-radius: 8px;
    border: 1px dashed lightcoral;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 10px;
}

#hint-text {
    margin: 0;
    padding: 0;
}

#hint-icon {
    margin: 0 5px;
    box-sizing: border-box;
    width: 17px;
    height: 17px;
}
