/* General Page Styling */
body {
    font-family: Arial, sans-serif;
    background-image: url('backg.png');
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh; /* Full viewport height */
    margin: 0;
    padding: 10px;
}

/* Registration Form */
.registration-form {
    background: rgba(255, 255, 255, 0.9); /* Slightly transparent white */
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.2);
    width: 90%; /* Default width for responsiveness */
    max-width: 450px; /* Maximum width for larger screens */
    text-align: center;
    position: relative;
    backdrop-filter: blur(5px); /* Optional: Adds a slight blur effect */
}

/* Logo and Title Container */
.logo-title-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px; /* Adjust spacing between logo and title */
    margin-bottom: 15px;
}

/* Logo Styling */
.logo {
    width: 50px; /* Adjust size as needed */
    height: auto;
    margin-top: 10px; /* Remove auto margin */
}

/* Title Styling */
.title {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    margin-top: 30px;
}

/* Input Fields and Select */
.registration-form input,
.registration-form select {
    width: 100%;
    max-width: 350px;
    padding: 10px;
    margin: 5px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

/* File Upload Styling */
.registration-form input[type="file"] {
    border: none;
    padding: 5px;
}

/* Submit Button */
.registration-form button {
    width: 100%;
    max-width: 350px;
    padding: 10px;
    background: #28a745;
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
    margin-top: 20px;
    border-radius: 5px;
    transition: 0.3s;
}

.registration-form button:hover {
    background: #218838;
}

/* Password message */
#password_message {
    font-size: 14px;
    font-weight: bold;
    display: block;
    margin-top: 5px;
}

/* Responsive Design */
@media (max-width: 480px) {
    .registration-form {
        width: 100%;
        padding: 15px;
    }

    .logo {
        width: 40px; /* Adjust for smaller screens */
    }

    .title {
        font-size: 20px;
    }
}
