
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: #020419;
    color: #e4e4e4;
}

.header {
    padding: 20px;
    text-align: center;
    background: #1a1a1a;
}

.navbar a {
    margin: 0 15px;
    color: #e4e4e4;
    text-decoration: none;
}

.background {
    width: 100%;
    height: 100vh;
    background: url('https://i.postimg.cc/nz6YzMPg/background.jpg') no-repeat center center/cover;
    filter: blur(8px);
    position: fixed;
    z-index: -1;
}

.container {
    max-width: 400px;
    margin: 100px auto;
    background: rgba(0, 0, 0, 0.7);
    padding: 20px;
    border-radius: 10px;
}

.input-box {
    margin-bottom: 20px;
}

.input-box input {
    width: 100%;
    padding: 10px;
    background: #1a1a1a;
    border: none;
    color: #e4e4e4;
    border-radius: 5px;
}

.btn {
    width: 100%;
    padding: 10px;
    background: #c4103d;
    border: none;
    color: #fff;
    border-radius: 5px;
    cursor: pointer;
}

.btn:hover {
    background: #9e0c2f;
}
