*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;

    background: url("https://img.global.news.samsung.com/mx/wp-content/uploads/2020/11/ezgif.com-gif-maker-1.gif") no-repeat center center fixed;
    background-size: cover;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

body::before{
    content: "";
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.65);
    z-index: -1;
}

.login-container{
    background: rgba(20, 20, 20, 0.6);
    padding: 40px;
    border-radius: 15px;
    width: 350px;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 15px 40px rgba(0,0,0,0.7);
    color: #fff;
}

.login-container h2{
    text-align: center;
    margin-bottom: 25px;
    color: #d4af37;
    letter-spacing: 1px;
}

.form-group{
    margin-bottom: 15px;
}

label{
    font-size: 0.9rem;
    color: #ccc;
}

input{
    width: 100%;
    padding: 12px;
    margin-top: 5px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    color: #fff;
    outline: none;
    transition: 0.3s;
}

input:focus{
    border: 1px solid #d4af37;
    box-shadow: 0 0 8px rgba(212,175,55,0.5);
}

button{
    width: 100%;
    padding: 12px;
    margin-top: 10px;
    background: #d4af37;
    border: none;
    border-radius: 8px;
    color: #000;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}
