body {
    background-color: rgb(3, 1, 31); /* Red background */
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    max-width: 800px;
    background: rgba(102, 101, 101, 0.308); /* Semi-transparent background */
    backdrop-filter: blur(10px); /* Glassmorphism blur effect */
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2); /* Border to enhance glass effect */
     margin-bottom: 50px;/* Remove extra space from the bottom */
}

.custom-img {
    width: 70%;
    height: 200px;
    object-fit: cover;
    align-items: center;
}

h2 {
    color: white;
    text-align: center;
}

label {
    color: white;
}

button {
    width: 100%;
    background-color: #28a745;
    border: none;
    padding: 10px;
    color: white;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
}

button:hover {
    background-color: #03f137;
}

@media (max-width: 767px) {
    .container {
        padding: 90px; /* Adjusted padding for smaller screens */
    }
}

input[type="text"],input[type="text"]:hover,
input[type="text"]:focus,input[type="email"],
input[type="email"]:hover,input[type="email"]:focus {
    background-color: transparent;
    color: white;
}

.selectop{
    background: transparent;
    color: white;
}

.selectop option{
    background: rgb(102, 101, 101);
}