body {
    margin: 0;
    padding: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: Arial, sans-serif;
    box-sizing: border-box;
}

#container {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    /*
    background-image: url("");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    */
}

#content {
    width: 300px;
    padding: 20px;
    border: 1px solid #ccc;
    backdrop-filter: blur(0px);
    background: rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 1);
    position: relative;
}

label, button {
    display: block;
    margin-bottom: 10px;
    font-size: 1rem;
}

input {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #888;
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 1rem;
    background: none;
}

::placeholder {
    color: #888;
}

button {
    padding: 10px;
    width: 100%;
    background-color: #007bff;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 4px;
}

button:hover {
    background-color: #0056b3;
}

#registerBtn {
    position: absolute;
    right: 20px;
    top: 20px;
    text-decoration: none;
    color: black;
}

.inputDiv {
    position: relative;
}

.icon {
    position: absolute;
    right: 10px;
    top: 8px;
}

#underBtns {
    margin: -8px 0 20px 0;
    position: relative;
    height: 10px;
}

#forgotPass {
    position: absolute;
    text-decoration: none;
    color: black;
    font-size: 0.95rem;
    right: 0;
    cursor: pointer;
}

#forgotPass:hover {
    text-decoration: underline;
}

#registerAccountBtn {
    width: 100%;
    text-align: center;
    display: inline-block;
    margin: 7px 0 0px 0;
    text-decoration: none;
    color: black;
    font-size: 0.95rem;
    cursor: pointer;
    bottom: 0;
}

#registerAccountBtn:hover {
    text-decoration: underline;
}
