/* .idea {
    max-width: 800px;
    margin: 50px auto;
    padding: 20px;
    background-color: white;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.6);
    border-radius: 8px;
    height: 200vh;
}
.idea h1 {
    text-align: center;
    

    padding: 10px;
    width: max-content;
    margin: auto;
}
.idea p {
    text-align: center;
    color: #666;
}
.idea iframe {
    display: block;
    margin: 0 auto;
    border: none;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width:100%; 
    height: 180vh;
}
@media (max-width:820px){
    
    .idea{
        height: 130vh;
        width: 90vw;
    }
    .idea iframe{
        height: 120vh;
        width: 85vw;
    }
} */

.form-container {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    max-width: 500px;
    width: 100%;
    transition: all 0.3s ease;
    margin: auto;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.9);
    margin-top: 5vh;
    margin-bottom: 5vh;
}

.form-container:hover {

    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

h2 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 24px;
    font-weight: bold;
    background-color: #1c3b70;
    color: white;
    padding: 3px;
}

form {
    display: flex;
    flex-direction: column;
}

.field {
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #555;
}

input,
select,
textarea {
    width: 90%;
    padding: 12px 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    background-color: #f9f9f9;
    transition: border 0.3s ease, box-shadow 0.3s ease;
}

input:focus,
select:focus,
textarea:focus {
    border-color: #007BFF;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.3);
    outline: none;
    background-color: #fff;
}

textarea {
    resize: vertical;
}

button {
    padding: 12px 20px;
    background-color: #1c3b70;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: #1c3b70 0.3s ease;
}

button:hover {
    background-color: #0056b3;
}
#button:hover {
    background-color: #1c3b70;
    color: white ;
}


@media(max-width: 820px) {
    body {
        margin: auto;
    }

    .form-container {
        max-width: 80vw;
    }

    h2 {
        font-size: 22px;
    }

    input,
    select,
    textarea {
        font-size: 14px;
        padding: 10px;
    }

    button {
        font-size: 14px;
        padding: 10px;
    }
    ::-webkit-scrollbar {
        width: 0;
        display: none;
    }
}