@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700&family=Poppins:wght@400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lato', 'Poppins', sans-serif;
    color: #333;
    background-color: #f5f5f5;
    line-height: 1.6;
}

.first_container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #56c8d8, #88e0ef);
    padding: 20px;
}

.image img {

    height: auto;
    margin-bottom: 20px;
    padding:25px;
}

.form_container {
    background: #fff;
    padding: 30px 40px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    max-width: 900px;
    width: 100%;
    margin-bottom: 60px;
}

.form_container h1 {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #333;
}

.form-columns {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap; /* Ensures proper wrapping on smaller screens */
}

.first_part, .second_part {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.box {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
    color: #333;
}

.box:focus {
    border-color: #56c8d8;
    outline: none;
    box-shadow: 0 0 5px rgba(86, 200, 216, 0.5);
}

.submit {
    width: 100%;
    padding: 12px;
    background-color: #56c8d8;
    color: rgb(14, 13, 13);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.submit:hover {
    background-color: #88e0ef;
}

.file-details {
    margin-top: 10px;
    font-size: 0.9rem;
    color: #666;
}
@media (max-width: 768px) {
    .form-columns {
        flex-direction: column;
        gap: 10px;
    }

    .first_part, .second_part {
        width: 100%;
    }
}
