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

 body {
    /* display: flex; */
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f0f2f5;
} 

 .form-container {
    background: linear-gradient(to bottom, #F5DC42, #ED7115); 
    border-radius: 15px;
    padding: 30px;
    width: 100%;
    /* max-width: 100%; */
    text-align: center;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: visible;
} 

.img-form {
    width: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: -60px; /* Adjust this value to move the image up or down */
    left: 50%;
    transform: translateX(-50%);
}

.header {
    margin-bottom: 20px;
    text-align: left; /* Align text to the left */
}

.title {
    font-size: 2em;
    color: black;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.title-greentech {
    color: #DB44A2;
    font-weight: 100;
}

.title-competition {
    font-size: 70px;
    font-weight: 100px;
    -webkit-text-stroke: 5px #ffffff;
    -webkit-text-fill-color: transparent;
    background: linear-gradient(to right, #DB44A2, #A150FF);
    -webkit-background-clip: text;
    background-clip: text;
}

.subtitle {
    font-size: 2em;
    color: #fff;
    margin-top: 5px;
    font-weight: 600;
    text-align:center;
}

.form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-row {
    display: flex;
    gap: 10px;
}

.form-field {
    flex: 1;
    display: flex;
    flex-direction: column;
}

label {
    font-weight: bold;
    margin-bottom: 5px;
    color: #A150FF;
    background: linear-gradient(45deg, #fff, #fff);
    -webkit-background-clip: text;
    color: transparent;
    text-align: left;
}

.label-term-condition{
    font-weight: bold;
    margin-bottom: 5px;
    color: #A150FF;
    background: linear-gradient(45deg, #ffffff, #ffffff);
    -webkit-background-clip: text;
    color: transparent;
    text-align: left;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="url"],
select {
    color: #979797;
    width: 100%;
    padding: 12px;
    border: 1px solid #7260AB;
    border-radius: 15px;
    outline: none;
    font-size: 1em;
}

.file-upload {
    border: 2px dashed #ffffff;
    border-radius: 15px;
    padding: 20px;
    cursor: pointer;
}

.file-size{
    color: #dddddd,40%;
}

.file-upload img {
    width: 50px;
}

.file-label {
    color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.file-upload input[type="file"] {
    display: block;
}

.checkbox-container {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9em;
    color: #666;
}

.checkbox-container a {
    color: #000;
    text-decoration: none;
    margin-left: 5px;
}

.checkbox-container a:hover {
    text-decoration: underline;
}

.submit-btn {
    padding: 12px;
    font-size: 1em;
    color: white;
    background-color: #6b47dc;
    border: none;
    border-radius: 15px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background-color: #5735a3;
}

/* Responsive Design */
@media (max-width: 600px) {
    .form-row {
        flex-direction: column;
    }
}