body {
    margin-top: 200px;
    display: flex;
    line-height: 1.6;
    justify-content: center;
    align-items:  center;
    word-spacing: 2px;
    font-family: 'Roboto', sans-serif;
    /*background: linear-gradient(to right, #2d409e, #6b37a3);*/
    background-image: url('../images/Trials/destruction.png');
    background-size: cover;
}

.glass-container {
    width: 300px;
    height: 350px;
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    border-radius: 16px;
    border: 1px solid #fff;
}

.glass-container::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 16px;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: -1;
}

.login-box {
    max-width: 250px;
    margin: 0 auto;
    text-align: center;
}

h2 {
    color: #fff;
    margin-top: 30px;
    margin-bottom: -20px;
}

form {
    display: flex;
    flex-direction: column;
    margin-top: 20px;
}

input {
    padding:10px;
    margin-top:25px;
    border-radius: 10px;
    background: transparent;
    border: 1px solid #fff;
    color: #fff;
    font-size: 14px;
}

input::placeholder {
    color: #fff;
}

input:focus {
    outline: none;
}

button {
    background: #fff;
    color:black;
    padding:10px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    margin-top: 15px;
}

button:hover {
    background: transparent;
    color: #fff;
    outline: 1px solid #fff;
}