*{
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
    box-sizing: border-box;
}
#content{
    margin-top: 20px;
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
h1{
    color: #ffffff;
    font-size: xx-large;
}
h2{
    color: #bcb6b6;
    font-size: large;
    margin-bottom: 10px;
    text-align:center;
}
#hint{
    margin-top: 10px;
    font-size: small;
    color: #4b4b4b;
}
input[type="password"]{
    padding: 10px;
    font-size: 16px;
    border-radius: 4px;
    border: 1px solid #ccc;
    margin-right: 10px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
input[type="password"]:focus{
    border-color: #000000;
    box-shadow: 0 0 5px rgba(248, 101, 101, 0.5);
  }
button{
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 4px;
    border: none;
    background-color: #ff5454;
    color: white;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
button:hover{
    background-color: rgb(227, 42, 42);
}
  
#content{
    margin-top: 20px;
}
body{
    background: #080808;
    color: #fff;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}
#header{
    width: 100%;
    height: 100vh;
    background-image: url(images/background.jpg);
    background-size: cover;
    background-position: center;
}
.container{
    padding: 5px 5%;
    text-align: center;
}