.form {
    max-width: 600px;
    margin: 0 auto;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.form-group {
    position: relative;
    margin-bottom: 24px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 16px;
    font-size: 17px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    background: rgba(45, 45, 45, 0.6);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    color: #f5f5f7;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    background: rgba(45, 45, 45, 0.8);
    border-color: #06c;
}

.form-group select:focus {
    outline: none;
}

.form-group label {
    position: absolute;
    left: 16px;
    top: 16px;
    font-size: 17px;
    color: #86868b;
    pointer-events: none;
    transition: all 0.3s ease;
}

.form-group input:focus + label,
.form-group textarea:focus + label,
.form-group select:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:not(:placeholder-shown) + label,
.form-group select:valid + label {
    top: -10px;
    left: 12px;
    font-size: 13px;
    padding: 0 6px;
    color: #f5f5f7;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
    padding-right: 40px;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23f5f5f7' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
}

.form-group select:focus {
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%2306c' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.form-group select option {
    background: #1a1a1a;
    color: #f5f5f7;
    padding: 12px;
}

.file-upload {
    position: relative;
}

.file-upload input[type="file"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
    pointer-events: none;
}

.file-upload .file-label {
    display: inline-block;
    padding: 12px 24px;
    background: #06c;
    color: white;
    border-radius: 8px;
    cursor: pointer;
    font-size: 15px;
    text-align: center;
    transition: background 0.3s ease;
    position: relative;
    font-weight: 500;
    user-select: none;
    pointer-events: all;
    z-index: 10;
}

.file-upload .file-label:hover {
    background: #0077ed;
}

.file-upload .file-label:active {
    transform: scale(0.98);
}

.file-name {
    font-size: 14px;
    color: #86868b;
    margin-top: 12px;
    display: block;
}

.submit-button {
    width: 100%;
    padding: 16px;
    font-size: 17px;
    font-weight: 600;
    background: #06c;
    color: white;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.submit-button:hover {
    background: #0077ed;
    transform: translateY(-1px);
}

.submit-button:active {
    transform: translateY(0);
}

.application-form {
    max-width: 700px;
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}
