@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@300;500;700&display=swap');


*{
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}
body{
    font-family: 'Oswald', Bold;
    font-size: 20px;
    line-height: 1.5;
}
.banner{
    min-height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("banner-img.jpg") center/cover no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    padding-bottom: 20px;
}
.card-container{
    display: grid;
    grid-template-columns: 400px 600px;
    max-width: 1050px;
    width: 100%;
    padding: 30px;
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 15px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
    justify-content: center;
    margin: 20px;
}
.card-img{
    background: url("card-img.jpg") center/cover no-repeat;
}
.banner h2{
    padding-bottom: 40px;
    margin-bottom: 20px;
}
.card-content{
    background: #fff;
    height: auto;
    min-height: 330px;
    padding: 20px;
    border-radius: 0 10px 10px 0;
}
.card-content h3{
    text-align: center;
    color: #ff9033;
    padding: 25px 0 20px 0;
    font-size: 28px;
    font-weight: 500;
    margin-bottom: 10px;
}
.form-row{
    display: flex;
    width: 90%;
    margin: 0 auto;
}
form select, form input{
    display: block;
    width: 100%;
    margin: 8px 12px;
    padding: 8px;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    outline: none;
    border: none;
    border-bottom: 2px solid #eee;
    font-weight: 300;
    transition: all 0.3s ease;
}

form select:focus, form input:focus {
    border-bottom: 2px solid #ff9033;
}
form input[type = text], form input[type = number], form input::placeholder, select{
    color: #9a9a9a;
}
form input[type = submit]{
    color: #fff;
    background: #ff9033;
    padding: 10px 0;
    border-radius: 4px;
    cursor: pointer;
}
form input[type = submit]:hover{
    opacity: 0.9;
}
.file-input-container {
    position: relative;
    margin: 20px auto;
    width: 90%;
}

.file-input {
    opacity: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    cursor: pointer;
    z-index: 2;
}

.file-label {
    display: block;
    border: 2px solid #ff9033;
    padding: 12px;
    border-radius: 8px;
    text-align: center;
    background-color: #ff9033;
    color: white;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s ease;
}

.file-label:hover {
    background-color: #e67f23;
    border-color: #e67f23;
}

.file-name {
    font-size: 14px;
    color: #555;
    margin-top: 5px;
    text-align: center;
}
@media(max-width: 992px){
    .card-container{
        grid-template-columns: 100%;
        width: 100vw;
    }
    .card-img{
        height: 330px;
    }
}
