::-webkit-scrollbar {
    width: 5px;
    height: 9px;
   
 }
 
 ::-webkit-scrollbar-thumb {
    background: #444;
    border-radius: 5px;
 }
 
body {
    font-family: 'Montserrat', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: #1a1919;
    padding: 10px; /* Reduced padding */
    overflow-y: hidden;
}

.form-container {
    color: white;
    background-color: #222;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 50%;
    max-width: 90%;
    height: 80vh; /* Ensure it fits within screen height */
    display: flex;
    flex-direction: column;
}

h2 {
    color: #fff;
    font-size: 2em; /* Slightly smaller font */
    text-align: center;
    position: relative;
    top:-1rem;
}


form {
    display: flex;
    flex-direction: column;
    overflow-y: auto; /* Enable scrolling inside the form */
    max-height: 80vh; /* Adjust to fit inside container */
    padding-right: 10px; /* Space for scrollbar */
}

label {
    font-weight: bold;
    margin-top: 8px; /* Slightly reduced spacing */
    text-align: left;
    font-size: 0.9em; /* Reduced font size */
}

input {
    padding: 8px; /* Reduced padding */
    margin-top: 4px;
    border: 1px solid #ccc;
    border-radius: 5px;
    width: 97.5%;
    font-size: 0.9em; /* Slightly smaller font */
}

select {
    padding: 8px;
    margin-top: 4px;
    border: 1px solid #ccc;
    border-radius: 5px;
    width: 97.5%;
    font-size: 0.9em;
}

button {
    background-color: #18537a;
    color: white;
    padding: 10px; /* Reduced padding */
    margin-top: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1em; /* Adjusted font size */
    transition: background-color 0.3s ease-in-out;
}

button:hover {
    background-color: #0a3c5d;
}

#owner-container, #social-container {
    display: flex;
    flex-direction: column;
}

#owner-container input, #social-container input {
    margin-top: 4px;
}
