* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

#contact {
    width: 100%;
    padding: 120px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

form {
    width: 100%;
    max-width: 700px;
    background: #111;
    padding: 50px;
    border-radius: 20px;
}

#contact h2 {
    text-align: center;
    color: orange;
    font-size: 2.3rem;
    margin-bottom: 40px;
}

.input-box {
    display: flex;
    flex-direction: column;
    margin-bottom: 25px;
}

.input-box label {
    color: white;
    margin-bottom: 8px;
    font-weight: 600;
}

.input-box input,
.input-box textarea {
    width: 100%;
    padding: 15px 20px;
    background: #1a1a1a;
    border: 2px solid #333;
    border-radius: 12px;
    color: white;
    font-size: 1rem;
    transition: border-color 0.35s
                box-shadow 0.35s
                transform 0.35s;
}

.input-box input:focus,
.input-box textarea:focus {
    outline: none;
    border-color: #ff7b00;
    box-shadow: 0 0 15px rgba(255, 123, 0, 0.45);
}

.input-box textarea {
    min-height: 180px;
    resize: vertical;
}

.input-box input,
.input-box textarea {
    caret-color: #ff7b00;
}

.input-wrapper {
    position: relative;
}

.input-wrapper i {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #ff7b00;
    font-size: 18px;
}

.input-wrapper input {
    padding-left: 55px;
}

.input-wrapper textarea {
    padding-left: 55px;
}

.textarea-wrapper i {
    top: 25px;
    transform: none;
}

form button {
    width: 100%;
    padding: 18px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: bold;
    background: linear-gradient(135deg,#ff7b00,#ff9d00);
    color: white;
    box-shadow: 0 8px 20px rgba(255, 123, 0, 0.35);
    transition: 0.35s ease;
    position: relative;
    overflow: hidden;
}

form button:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(255, 123, 0, 0.55);
}

form button:active {
    transform: translateY(1px);
}