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

body {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: #000;
}

.background-clip {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    object-fit: cover;
    z-index: -1;
    filter: brightness(40%);
}

.back-btn {
    position: absolute;
    top: 20px;
    left: 20px;
    color: white;
    text-decoration: none;
    font-size: 18px;
    transition: 0.5s;
    z-index: 10;
}

.back-btn:hover {
    color: #384bf7;
}

.container {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 40px;
    width: 500px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

.container h2 {
    color: #fff;
    font-size: 35px;
    margin-bottom: 10px;
}

.container h2 span {
    color: #3408f8;
}

.container p {
    color: #eee;
    margin-bottom: 25px;
    font-size: 14px;
}

.input-group {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.input-box {
    flex: 1;
}

input,
textarea {
    width: 100%;
    padding: 12px;
    background-color: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 8px;
    outline: none;
    font-size: 15px;
}

textarea {
    margin-top: 5px;
    resize: none;
}

button {
    background-color: #3408f8;
    padding: 15px 50px;
    border-radius: 8px;
    color: white;
    border: none;
    margin-top: 25px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
    width: 100%;
}

button:hover {
    background-color: #ffffff;
    color: #3408f8;
}