.contact {
    max-width: 600px;
    margin: auto;
    padding: 80px 20px;
    flex: 1;
    width: 100%;
}

.contact form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 0 auto;
    max-width: 600px;
}

.contact input,
.contact textarea {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px;
    border-radius: 6px;
    color: white;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
}

.contact textarea {
    min-height: 120px;
    resize: none;
}

.btn-submit {
    width: 100%;
    background: linear-gradient(135deg, #2EE6C6, #00bfa6);
    color: black;
    border: none;
    padding: 14px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow:
        0 0 10px rgba(46, 230, 198, 0.4),
        0 0 20px rgba(46, 230, 198, 0.2);
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow:
        0 0 15px rgba(46, 230, 198, 0.8),
        0 0 30px rgba(46, 230, 198, 0.5);
}

.btn-submit:active {
    transform: scale(0.97);
}

.contact input::placeholder,
.contact textarea::placeholder {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

.contact input:focus,
.contact textarea:focus {
    outline: none;
    border-color: #2EE6C6;
    box-shadow: 0 0 5px rgba(46, 230, 198, 0.5);
}

.toast {
    margin: 20px auto 0 auto;
    padding: 12px;
    border-radius: 8px;
    width: 50%;
    max-width: 400px;

    background: rgba(20, 25, 30, 0.95);

    font-size: 14px;
    color: white;
    font-family: 'Inter', sans-serif;
    text-align: center;

    opacity: 0;
    transform: translateY(10px) scale(0.75);
    transition: all 0.3s ease;

    pointer-events: none;
}

.toast-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.toast-icon {
    width: 18px;
    height: 18px;
}

.toast.show {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Success */
.toast.success {
    border-left: 4px solid #2EE6C6;
    box-shadow:
        0 0 10px rgba(46, 230, 198, 0.3),
        0 0 20px rgba(46, 230, 198, 0.2);
}

/* Error */
.toast.error {
    border-left: 4px solid #ff4d4d;
    box-shadow:
        0 0 10px rgba(153, 17, 17, 0.774),
        0 0 20px rgba(153, 17, 17, 0.774);
}